Lines Matching refs:XXH32_hash_t
190 typedef uint32_t XXH32_hash_t; typedef
194 typedef unsigned int XXH32_hash_t; typedef
197 typedef unsigned long XXH32_hash_t; typedef
209 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t length, XXH32_hash_t seed);
239 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, XXH32_hash_t seed);
241 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
261 XXH_PUBLIC_API void XXH32_canonicalFromHash(XXH32_canonical_t* dst, XXH32_hash_t hash);
262 XXH_PUBLIC_API XXH32_hash_t XXH32_hashFromCanonical(const XXH32_canonical_t* src);
322 XXH32_hash_t total_len_32;
323 XXH32_hash_t large_len;
324 XXH32_hash_t v1;
325 XXH32_hash_t v2;
326 XXH32_hash_t v3;
327 XXH32_hash_t v4;
328 XXH32_hash_t mem32[4];
329 XXH32_hash_t memsize;
330 XXH32_hash_t reserved; /* never read nor write, might be removed in a future version */
343 XXH32_hash_t memsize;
344 XXH32_hash_t reserved32; /* required for padding anyway */
506 typedef XXH32_hash_t xxh_u32;
813 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t len, XXH32_hash_t seed) in XXH32()
852 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, XXH32_hash_t seed) in XXH32_reset()
879 state->total_len_32 += (XXH32_hash_t)len; in XXH32_update()
880 state->large_len |= (XXH32_hash_t)((len>=16) | (state->total_len_32>=16)); in XXH32_update()
884 state->memsize += (XXH32_hash_t)len; in XXH32_update()
930 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* state) in XXH32_digest()
957 XXH_PUBLIC_API void XXH32_canonicalFromHash(XXH32_canonical_t* dst, XXH32_hash_t hash) in XXH32_canonicalFromHash()
959 XXH_STATIC_ASSERT(sizeof(XXH32_canonical_t) == sizeof(XXH32_hash_t)); in XXH32_canonicalFromHash()
964 XXH_PUBLIC_API XXH32_hash_t XXH32_hashFromCanonical(const XXH32_canonical_t* src) in XXH32_hashFromCanonical()