Lines Matching refs:XXH3_state_t

209 #  define XXH3_state_t  XXH_IPREF(XXH3_state_t)  macro
836 typedef struct XXH3_state_s XXH3_state_t; typedef
837 XXH_PUBLIC_API XXH3_state_t* XXH3_createState(void);
838 XXH_PUBLIC_API XXH_errorcode XXH3_freeState(XXH3_state_t* statePtr);
839 XXH_PUBLIC_API void XXH3_copyState(XXH3_state_t* dst_state, const XXH3_state_t* src_state);
846 XXH_PUBLIC_API XXH_errorcode XXH3_64bits_reset(XXH3_state_t* statePtr);
852 XXH_PUBLIC_API XXH_errorcode XXH3_64bits_reset_withSeed(XXH3_state_t* statePtr, XXH64_hash_t seed);
862 XXH_PUBLIC_API XXH_errorcode XXH3_64bits_reset_withSecret(XXH3_state_t* statePtr, const void* secre…
864 XXH_PUBLIC_API XXH_errorcode XXH3_64bits_update (XXH3_state_t* statePtr, const void* input, size_t …
865 XXH_PUBLIC_API XXH64_hash_t XXH3_64bits_digest (const XXH3_state_t* statePtr);
903 XXH_PUBLIC_API XXH_errorcode XXH3_128bits_reset(XXH3_state_t* statePtr);
904 XXH_PUBLIC_API XXH_errorcode XXH3_128bits_reset_withSeed(XXH3_state_t* statePtr, XXH64_hash_t seed);
905 XXH_PUBLIC_API XXH_errorcode XXH3_128bits_reset_withSecret(XXH3_state_t* statePtr, const void* secr…
907 XXH_PUBLIC_API XXH_errorcode XXH3_128bits_update (XXH3_state_t* statePtr, const void* input, size_t…
908 XXH_PUBLIC_API XXH128_hash_t XXH3_128bits_digest (const XXH3_state_t* statePtr);
1209 XXH3_64bits_reset_withSecretandSeed(XXH3_state_t* statePtr,
1214 XXH3_128bits_reset_withSecretandSeed(XXH3_state_t* statePtr,
4688 XXH_PUBLIC_API XXH3_state_t* XXH3_createState(void) in XXH3_createState()
4690 XXH3_state_t* const state = (XXH3_state_t*)XXH_alignedMalloc(sizeof(XXH3_state_t), 64); in XXH3_createState()
4697 XXH_PUBLIC_API XXH_errorcode XXH3_freeState(XXH3_state_t* statePtr) in XXH3_freeState()
4705 XXH3_copyState(XXH3_state_t* dst_state, const XXH3_state_t* src_state) in XXH3_copyState()
4711 XXH3_reset_internal(XXH3_state_t* statePtr, in XXH3_reset_internal()
4715 size_t const initStart = offsetof(XXH3_state_t, bufferedSize); in XXH3_reset_internal()
4716 size_t const initLength = offsetof(XXH3_state_t, nbStripesPerBlock) - initStart; in XXH3_reset_internal()
4717 XXH_ASSERT(offsetof(XXH3_state_t, nbStripesPerBlock) > initStart); in XXH3_reset_internal()
4739 XXH3_64bits_reset(XXH3_state_t* statePtr) in XXH3_64bits_reset()
4748 XXH3_64bits_reset_withSecret(XXH3_state_t* statePtr, const void* secret, size_t secretSize) in XXH3_64bits_reset_withSecret()
4759 XXH3_64bits_reset_withSeed(XXH3_state_t* statePtr, XXH64_hash_t seed) in XXH3_64bits_reset_withSeed()
4771 XXH3_64bits_reset_withSecretandSeed(XXH3_state_t* statePtr, const void* secret, size_t secretSize, … in XXH3_64bits_reset_withSecretandSeed()
4817 XXH3_update(XXH3_state_t* XXH_RESTRICT const state, in XXH3_update()
4933 XXH3_64bits_update(XXH3_state_t* state, const void* input, size_t len) in XXH3_64bits_update()
4942 const XXH3_state_t* state, in XXH3_digest_long()
4975 XXH_PUBLIC_API XXH64_hash_t XXH3_64bits_digest (const XXH3_state_t* state) in XXH3_64bits_digest()
5416 XXH3_128bits_reset(XXH3_state_t* statePtr) in XXH3_128bits_reset()
5423 XXH3_128bits_reset_withSecret(XXH3_state_t* statePtr, const void* secret, size_t secretSize) in XXH3_128bits_reset_withSecret()
5430 XXH3_128bits_reset_withSeed(XXH3_state_t* statePtr, XXH64_hash_t seed) in XXH3_128bits_reset_withSeed()
5437 XXH3_128bits_reset_withSecretandSeed(XXH3_state_t* statePtr, const void* secret, size_t secretSize,… in XXH3_128bits_reset_withSecretandSeed()
5444 XXH3_128bits_update(XXH3_state_t* state, const void* input, size_t len) in XXH3_128bits_update()
5451 XXH_PUBLIC_API XXH128_hash_t XXH3_128bits_digest (const XXH3_state_t* state) in XXH3_128bits_digest()