Lines Matching refs:XXH32_state_t
236 typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */ typedef
237 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void);
238 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
239 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dst_state, const XXH32_state_t* src_state);
241 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, XXH32_hash_t seed);
242 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t lengt…
243 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
819 XXH32_state_t state; in XXH32()
839 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState()
841 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState()
843 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState()
849 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dstState, const XXH32_state_t* srcState) in XXH32_copyState()
854 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, XXH32_hash_t seed) in XXH32_reset()
856 …XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH32_reset()
869 XXH32_update(XXH32_state_t* state, const void* input, size_t len) in XXH32_update()
932 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* state) in XXH32_digest()