OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:XXH32_sizeofState
(Results
1 - 2
of
2
) sorted by null
/external/fio/crc/
xxhash.h
137
int
XXH32_sizeofState
(void);
140
#define
XXH32_SIZEOFSTATE
48
141
typedef struct { long long ll[(
XXH32_SIZEOFSTATE
+(sizeof(long long)-1))/sizeof(long long)]; } XXH32_stateSpace_t;
145
XXH32_sizeofState
() is used to know how much space must be allocated for the xxHash 32-bits state.
xxhash.c
256
int
XXH32_sizeofState
(void)
258
XXH_STATIC_ASSERT(
XXH32_SIZEOFSTATE
>= sizeof(struct XXH_state32_t)); // A compilation error here means
XXH32_SIZEOFSTATE
is not large enough
Completed in 107 milliseconds