Home
last modified time | relevance | path

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

/lz4-3.4.0-2.7.6/lib/
Dxxhash.h229 typedef struct XXH64_state_s XXH64_state_t; /* incomplete type */ typedef
230 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void);
231 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
232 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dst_state, const XXH64_state_t* src_state);
234 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed);
235 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt…
236 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
Dxxhash.c859 XXH64_state_t state; in XXH64()
883 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void) in XXH64_createState()
885 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t)); in XXH64_createState()
887 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) in XXH64_freeState()
893 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dstState, const XXH64_state_t* srcState) in XXH64_copyState()
898 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed) in XXH64_reset()
900XXH64_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH64_reset()
912 XXH64_update_endian (XXH64_state_t* state, const void* input, size_t len, XXH_endianess endian) in XXH64_update_endian()
971 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* state_in, const void* input, size_t len) in XXH64_update()
981 FORCE_INLINE U64 XXH64_digest_endian (const XXH64_state_t* state, XXH_endianess endian) in XXH64_digest_endian()
[all …]
/lz4-3.4.0-2.7.6/tests/
Dfuzzer.c1187 { XXH64_state_t xxhOrig; in FUZ_unitTests()
1188 XXH64_state_t xxhNewSafe, xxhNewFast; in FUZ_unitTests()
1390 { XXH64_state_t crcOrigState; in FUZ_unitTests()
1391 XXH64_state_t crcNewState; in FUZ_unitTests()
1434 { XXH64_state_t xxhOrig; in FUZ_unitTests()
1435 XXH64_state_t xxhNewSafe, xxhNewFast; in FUZ_unitTests()
1496 { XXH64_state_t xxhOrig; in FUZ_unitTests()
1497 XXH64_state_t xxhNewSafe, xxhNewFast; in FUZ_unitTests()
Dframetest.c830 XXH64_state_t xxh64; in test_lz4f_decompression_wBuffers()