Home
last modified time | relevance | path

Searched refs:XXH64_state_t (Results 1 – 4 of 4) sorted by relevance

/external/lz4/lib/
Dxxhash.h228 typedef struct XXH64_state_s XXH64_state_t; /* incomplete type */ typedef
229 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void);
230 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
231 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dst_state, const XXH64_state_t* src_state);
233 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed);
234 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt…
235 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
Dxxhash.c697 XXH64_state_t state; in XXH64()
721 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void) in XXH64_createState()
723 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t)); in XXH64_createState()
725 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) in XXH64_freeState()
731 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dstState, const XXH64_state_t* srcState) in XXH64_copyState()
736 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed) in XXH64_reset()
738XXH64_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH64_reset()
748 FORCE_INLINE XXH_errorcode XXH64_update_endian (XXH64_state_t* state, const void* input, size_t len… in XXH64_update_endian()
803 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* state_in, const void* input, size_t len) in XXH64_update()
813 FORCE_INLINE U64 XXH64_digest_endian (const XXH64_state_t* state, XXH_endianess endian) in XXH64_digest_endian()
[all …]
/external/lz4/tests/
Dfuzzer.c699 { XXH64_state_t xxhOrig; in FUZ_unitTests()
700 XXH64_state_t xxhNew; in FUZ_unitTests()
807 { XXH64_state_t crcOrigState; in FUZ_unitTests()
808 XXH64_state_t crcNewState; in FUZ_unitTests()
850 { XXH64_state_t xxhOrig; in FUZ_unitTests()
851 XXH64_state_t xxhNew; in FUZ_unitTests()
892 { XXH64_state_t xxhOrig; in FUZ_unitTests()
893 XXH64_state_t xxhNew; in FUZ_unitTests()
Dframetest.c674 XXH64_state_t xxh64; in fuzzerTests()