Home
last modified time | relevance | path

Searched refs:XXH32_state_t (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/contrib/zstd/lib/common/
H A Dxxhash.h165 typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */ typedef
170 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void);
171 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
179 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, unsigned int seed);
180 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t lengt…
181 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
217 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dst_state, const XXH32_state_t* restric…
H A Dxxhash.c270 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dstState, const XXH32_state_t* restrict… in XXH32_copyState()
493 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState()
495 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState()
497 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState()
516 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset()
518XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH32_reset()
542 FORCE_INLINE_TEMPLATE XXH_errorcode XXH32_update_endian (XXH32_state_t* state, const void* input, s… in XXH32_update_endian()
600 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len) in XXH32_update()
612 FORCE_INLINE_TEMPLATE U32 XXH32_digest_endian (const XXH32_state_t* state, XXH_endianess endian) in XXH32_digest_endian()
648 XXH_PUBLIC_API unsigned int XXH32_digest (const XXH32_state_t* state_in) in XXH32_digest()
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c5346 typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */ typedef
5351 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void);
5352 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
5362 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
5398 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dst_state, const XXH32_state_t* restric…
5769 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dstState, const XXH32_state_t* restrict… in XXH32_copyState()
5992 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState()
5994 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState()
5996 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState()
6015 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset()
[all …]