OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:xxh_errorcode
(Results
1 - 4
of
4
) sorted by null
/external/lz4/lib/
xxhash.h
76
typedef enum { XXH_OK=0, XXH_ERROR }
XXH_errorcode
;
114
XXH_errorcode
XXH32_freeState(XXH32_state_t* statePtr);
117
XXH_errorcode
XXH64_freeState(XXH64_state_t* statePtr);
125
XXH_errorcode
XXH32_reset (XXH32_state_t* statePtr, unsigned seed);
126
XXH_errorcode
XXH32_update (XXH32_state_t* statePtr, const void* input, size_t length);
129
XXH_errorcode
XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed);
130
XXH_errorcode
XXH64_update (XXH64_state_t* statePtr, const void* input, size_t length);
xxhash.c
541
XXH_errorcode
XXH32_freeState(XXH32_state_t* statePtr)
552
XXH_errorcode
XXH64_freeState(XXH64_state_t* statePtr)
561
XXH_errorcode
XXH32_reset(XXH32_state_t* state_in, U32 seed)
574
XXH_errorcode
XXH64_reset(XXH64_state_t* state_in, unsigned long long seed)
588
FORCE_INLINE
XXH_errorcode
XXH32_update_endian (XXH32_state_t* state_in, const void* input, size_t len, XXH_endianess endian)
677
XXH_errorcode
XXH32_update (XXH32_state_t* state_in, const void* input, size_t len)
742
FORCE_INLINE
XXH_errorcode
XXH64_update_endian (XXH64_state_t* state_in, const void* input, size_t len, XXH_endianess endian)
831
XXH_errorcode
XXH64_update (XXH64_state_t* state_in, const void* input, size_t len)
/external/fio/crc/
xxhash.h
83
typedef enum { XXH_OK=0, XXH_ERROR }
XXH_errorcode
;
111
XXH_errorcode
XXH32_update (void* state, const void* input, int len);
138
XXH_errorcode
XXH32_resetState(void* state, unsigned int seed);
xxhash.c
263
XXH_errorcode
XXH32_resetState(void* state_in, uint32_t seed)
285
static
XXH_errorcode
XXH32_update_endian (void* state_in, const void* input, int len, XXH_endianess endian)
349
XXH_errorcode
XXH32_update (void* state_in, const void* input, int len)
Completed in 451 milliseconds