Lines Matching refs:XXH32_hash_t

355 typedef uint32_t XXH32_hash_t;  typedef
361 typedef uint32_t XXH32_hash_t; typedef
366 typedef unsigned int XXH32_hash_t; typedef
369 typedef unsigned long XXH32_hash_t; typedef
415 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t length, XXH32_hash_t seed);
513 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, XXH32_hash_t seed);
549 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
588 XXH_PUBLIC_API void XXH32_canonicalFromHash(XXH32_canonical_t* dst, XXH32_hash_t hash);
600 XXH_PUBLIC_API XXH32_hash_t XXH32_hashFromCanonical(const XXH32_canonical_t* src);
976 XXH32_hash_t total_len_32; /*!< Total length hashed, modulo 2^32 */
977 XXH32_hash_t large_len; /*!< Whether the hash is >= 16 (handles @ref total_len_32 overflow) */
978 XXH32_hash_t v[4]; /*!< Accumulator lanes */
979XXH32_hash_t mem32[4]; /*!< Internal buffer for partial reads. Treated as unsigned char[16]. */
980 XXH32_hash_t memsize; /*!< Amount of data in @ref mem32 */
981 XXH32_hash_t reserved; /*!< Reserved field. Do not read or write to it, it may be removed. */
1003 XXH32_hash_t memsize; /*!< Amount of data in @ref mem64 */
1004 XXH32_hash_t reserved32; /*!< Reserved field, needed for padding anyways*/
1078 XXH32_hash_t bufferedSize;
1080 XXH32_hash_t useSeed;
1591 typedef XXH32_hash_t xxh_u32;
2116 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t len, XXH32_hash_t seed) in XXH32()
2158 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, XXH32_hash_t seed) in XXH32_reset()
2184 state->total_len_32 += (XXH32_hash_t)len; in XXH32_update()
2185 state->large_len |= (XXH32_hash_t)((len>=16) | (state->total_len_32>=16)); in XXH32_update()
2189 state->memsize += (XXH32_hash_t)len; in XXH32_update()
2228 XXH_PUBLIC_API XXH32_hash_t XXH32_digest(const XXH32_state_t* state) in XXH32_digest()
2263 XXH_PUBLIC_API void XXH32_canonicalFromHash(XXH32_canonical_t* dst, XXH32_hash_t hash) in XXH32_canonicalFromHash()
2265 XXH_STATIC_ASSERT(sizeof(XXH32_canonical_t) == sizeof(XXH32_hash_t)); in XXH32_canonicalFromHash()
2270 XXH_PUBLIC_API XXH32_hash_t XXH32_hashFromCanonical(const XXH32_canonical_t* src) in XXH32_hashFromCanonical()
4814 state->bufferedSize += (XXH32_hash_t)len; in XXH3_update()
4890 state->bufferedSize = (XXH32_hash_t)(bEnd-input); in XXH3_update()