Lines Matching refs:XXH32_hash_t
272 typedef uint32_t XXH32_hash_t; typedef
276 typedef unsigned int XXH32_hash_t; typedef
279 typedef unsigned long XXH32_hash_t; typedef
297 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t length, XXH32_hash_t seed);
329 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, XXH32_hash_t seed);
331 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
355 XXH_PUBLIC_API void XXH32_canonicalFromHash(XXH32_canonical_t* dst, XXH32_hash_t hash);
356 XXH_PUBLIC_API XXH32_hash_t XXH32_hashFromCanonical(const XXH32_canonical_t* src);
616 XXH32_hash_t total_len_32;
617 XXH32_hash_t large_len;
618 XXH32_hash_t v1;
619 XXH32_hash_t v2;
620 XXH32_hash_t v3;
621 XXH32_hash_t v4;
622 XXH32_hash_t mem32[4];
623 XXH32_hash_t memsize;
624 XXH32_hash_t reserved; /* never read nor write, might be removed in a future version */
637 XXH32_hash_t memsize;
638 XXH32_hash_t reserved32; /* required for padding anyway */
668 XXH32_hash_t bufferedSize;
669 XXH32_hash_t reserved32;
991 typedef XXH32_hash_t xxh_u32;
1392 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t len, XXH32_hash_t seed) in XXH32()
1431 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, XXH32_hash_t seed) in XXH32_reset()
1458 state->total_len_32 += (XXH32_hash_t)len; in XXH32_update()
1459 state->large_len |= (XXH32_hash_t)((len>=16) | (state->total_len_32>=16)); in XXH32_update()
1463 state->memsize += (XXH32_hash_t)len; in XXH32_update()
1509 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* state) in XXH32_digest()
1543 XXH_PUBLIC_API void XXH32_canonicalFromHash(XXH32_canonical_t* dst, XXH32_hash_t hash) in XXH32_canonicalFromHash()
1545 XXH_STATIC_ASSERT(sizeof(XXH32_canonical_t) == sizeof(XXH32_hash_t)); in XXH32_canonicalFromHash()
1550 XXH_PUBLIC_API XXH32_hash_t XXH32_hashFromCanonical(const XXH32_canonical_t* src) in XXH32_hashFromCanonical()
4075 state->bufferedSize += (XXH32_hash_t)len; in XXH3_update()
4118 state->bufferedSize = (XXH32_hash_t)(bEnd-input); in XXH3_update()