Lines Matching refs:XXH32_state_t
205 # define XXH32_state_t XXH_IPREF(XXH32_state_t) macro
473 typedef struct XXH32_state_s XXH32_state_t; typedef
481 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void);
489 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
498 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dst_state, const XXH32_state_t* src_state);
513 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, XXH32_hash_t seed);
533 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t lengt…
549 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
2120 XXH32_state_t state; in XXH32()
2140 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState()
2142 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState()
2145 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState()
2152 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dstState, const XXH32_state_t* srcState) in XXH32_copyState()
2158 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, XXH32_hash_t seed) in XXH32_reset()
2160 …XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH32_reset()
2174 XXH32_update(XXH32_state_t* state, const void* input, size_t len) in XXH32_update()
2228 XXH_PUBLIC_API XXH32_hash_t XXH32_digest(const XXH32_state_t* state) in XXH32_digest()