simdjson 4.2.3
Ridiculously Fast JSON
Loading...
Searching...
No Matches
intrinsics.h
1#ifndef SIMDJSON_ARM64_INTRINSICS_H
2#define SIMDJSON_ARM64_INTRINSICS_H
3
4#ifndef SIMDJSON_CONDITIONAL_INCLUDE
5#include "simdjson/arm64/base.h"
6#endif // SIMDJSON_CONDITIONAL_INCLUDE
7
8// This should be the correct header whether
9// you use visual studio or other compilers.
10#include <arm_neon.h>
11
12static_assert(sizeof(uint8x16_t) <= simdjson::SIMDJSON_PADDING, "insufficient padding for arm64");
13
14#endif // SIMDJSON_ARM64_INTRINSICS_H
constexpr size_t SIMDJSON_PADDING
The amount of padding needed in a buffer to parse JSON.
Definition base.h:33