Lines Matching refs:XXH64_state_t
207 # define XXH64_state_t XXH_IPREF(XXH64_state_t) macro
717 typedef struct XXH64_state_s XXH64_state_t; /* incomplete type */ typedef
718 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void);
719 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
720 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dst_state, const XXH64_state_t* src_state);
722 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, XXH64_hash_t seed);
723 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt…
724 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
2538 XXH64_state_t state; in XXH64()
2556 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void) in XXH64_createState()
2558 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t)); in XXH64_createState()
2561 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) in XXH64_freeState()
2568 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dstState, const XXH64_state_t* srcState) in XXH64_copyState()
2574 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, XXH64_hash_t seed) in XXH64_reset()
2576 …XXH64_state_t state; /* use a local state to memcpy() in order to avoid strict-aliasing warnings… in XXH64_reset()
2589 XXH64_update (XXH64_state_t* state, const void* input, size_t len) in XXH64_update()
2640 XXH_PUBLIC_API XXH64_hash_t XXH64_digest(const XXH64_state_t* state) in XXH64_digest()