Lines Matching refs:XXH32_state_t
396 XXH32_state_t state; in XXH32()
422 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState()
424 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState()
426 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState()
432 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dstState, const XXH32_state_t* srcState) in XXH32_copyState()
437 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset()
439 …XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH32_reset()
452 XXH32_update_endian(XXH32_state_t* state, const void* input, size_t len, XXH_endianess endian) in XXH32_update_endian()
515 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len) in XXH32_update()
527 XXH32_digest_endian (const XXH32_state_t* state, XXH_endianess endian) in XXH32_digest_endian()
546 XXH_PUBLIC_API unsigned int XXH32_digest (const XXH32_state_t* state_in) in XXH32_digest()