Lines Matching refs:XXH64_hash_t

654 typedef uint64_t XXH64_hash_t;  typedef
659 typedef uint64_t XXH64_hash_t; typedef
664 typedef unsigned long XXH64_hash_t; typedef
667 typedef unsigned long long XXH64_hash_t; typedef
709 XXH_PUBLIC_API XXH64_hash_t XXH64(const void* input, size_t length, XXH64_hash_t seed);
722 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, XXH64_hash_t seed);
724 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
727 typedef struct { unsigned char digest[sizeof(XXH64_hash_t)]; } XXH64_canonical_t;
728 XXH_PUBLIC_API void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash);
729 XXH_PUBLIC_API XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src);
783 XXH_PUBLIC_API XXH64_hash_t XXH3_64bits(const void* data, size_t len);
792 XXH_PUBLIC_API XXH64_hash_t XXH3_64bits_withSeed(const void* data, size_t len, XXH64_hash_t seed);
820 XXH_PUBLIC_API XXH64_hash_t XXH3_64bits_withSecret(const void* data, size_t len, const void* secret…
852 XXH_PUBLIC_API XXH_errorcode XXH3_64bits_reset_withSeed(XXH3_state_t* statePtr, XXH64_hash_t seed);
865 XXH_PUBLIC_API XXH64_hash_t XXH3_64bits_digest (const XXH3_state_t* statePtr);
882 XXH64_hash_t low64; /*!< `value & 0xFFFFFFFFFFFFFFFF` */
883 XXH64_hash_t high64; /*!< `value >> 64` */
887 XXH_PUBLIC_API XXH128_hash_t XXH3_128bits_withSeed(const void* data, size_t len, XXH64_hash_t seed);
904 XXH_PUBLIC_API XXH_errorcode XXH3_128bits_reset_withSeed(XXH3_state_t* statePtr, XXH64_hash_t seed);
1000 XXH64_hash_t total_len; /*!< Total length hashed. This is always 64-bit. */
1001 XXH64_hash_t v[4]; /*!< Accumulator lanes */
1002XXH64_hash_t mem64[4]; /*!< Internal buffer for partial reads. Treated as unsigned char[32]. */
1005 XXH64_hash_t reserved64; /*!< Reserved field. Do not read or write to it, it may be removed. */
1072 XXH_ALIGN_MEMBER(64, XXH64_hash_t acc[8]);
1084 XXH64_hash_t totalLen;
1090 XXH64_hash_t seed;
1092 XXH64_hash_t reserved64;
1119 XXH_PUBLIC_API XXH128_hash_t XXH128(const void* data, size_t len, XXH64_hash_t seed);
1169 XXH_PUBLIC_API void XXH3_generateSecret_fromSeed(void* secretBuffer, XXH64_hash_t seed);
1198 XXH_PUBLIC_API XXH64_hash_t
1201 XXH64_hash_t seed);
1206 XXH64_hash_t seed64);
1211 XXH64_hash_t seed64);
1216 XXH64_hash_t seed64);
2319 typedef XXH64_hash_t xxh_u64;
2565 XXH_PUBLIC_API XXH64_hash_t XXH64 (const void* input, size_t len, XXH64_hash_t seed) in XXH64()
2605 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, XXH64_hash_t seed) in XXH64_reset()
2671 XXH_PUBLIC_API XXH64_hash_t XXH64_digest(const XXH64_state_t* state) in XXH64_digest()
2694 XXH_PUBLIC_API void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash) in XXH64_canonicalFromHash()
2696 XXH_STATIC_ASSERT(sizeof(XXH64_canonical_t) == sizeof(XXH64_hash_t)); in XXH64_canonicalFromHash()
2702 XXH_PUBLIC_API XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src) in XXH64_hashFromCanonical()
3420 static XXH64_hash_t XXH3_avalanche(xxh_u64 h64) in XXH3_avalanche()
3433 static XXH64_hash_t XXH3_rrmxmx(xxh_u64 h64, xxh_u64 len) in XXH3_rrmxmx()
3477 XXH_FORCE_INLINE XXH64_hash_t
3478 XXH3_len_1to3_64b(const xxh_u8* input, size_t len, const xxh_u8* secret, XXH64_hash_t seed) in XXH3_len_1to3_64b()
3499 XXH_FORCE_INLINE XXH64_hash_t
3500 XXH3_len_4to8_64b(const xxh_u8* input, size_t len, const xxh_u8* secret, XXH64_hash_t seed) in XXH3_len_4to8_64b()
3515 XXH_FORCE_INLINE XXH64_hash_t
3516 XXH3_len_9to16_64b(const xxh_u8* input, size_t len, const xxh_u8* secret, XXH64_hash_t seed) in XXH3_len_9to16_64b()
3532 XXH_FORCE_INLINE XXH64_hash_t
3533 XXH3_len_0to16_64b(const xxh_u8* input, size_t len, const xxh_u8* secret, XXH64_hash_t seed) in XXH3_len_0to16_64b()
3602 XXH_FORCE_INLINE XXH64_hash_t
3605 XXH64_hash_t seed) in XXH3_len_17to128_64b()
3632 XXH_NO_INLINE XXH64_hash_t
3635 XXH64_hash_t seed) in XXH3_len_129to240_64b()
4446 static XXH64_hash_t
4476 XXH_FORCE_INLINE XXH64_hash_t
4499 XXH3_WITH_SECRET_INLINE XXH64_hash_t
4501XXH64_hash_t seed64, const xxh_u8* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_64b_withSecret()
4513 XXH_NO_INLINE XXH64_hash_t
4515 XXH64_hash_t seed64, const xxh_u8* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_64b_default()
4532 XXH_FORCE_INLINE XXH64_hash_t
4534 XXH64_hash_t seed, in XXH3_hashLong_64b_withSeed_internal()
4553 XXH_NO_INLINE XXH64_hash_t
4555 XXH64_hash_t seed, const xxh_u8* secret, size_t secretLen) in XXH3_hashLong_64b_withSeed()
4563 typedef XXH64_hash_t (*XXH3_hashLong64_f)(const void* XXH_RESTRICT, size_t,
4564 XXH64_hash_t, const xxh_u8* XXH_RESTRICT, size_t);
4566 XXH_FORCE_INLINE XXH64_hash_t
4568 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen, in XXH3_64bits_internal()
4592 XXH_PUBLIC_API XXH64_hash_t XXH3_64bits(const void* input, size_t len) in XXH3_64bits()
4598 XXH_PUBLIC_API XXH64_hash_t
4605 XXH_PUBLIC_API XXH64_hash_t
4606 XXH3_64bits_withSeed(const void* input, size_t len, XXH64_hash_t seed) in XXH3_64bits_withSeed()
4611 XXH_PUBLIC_API XXH64_hash_t
4612 …retandSeed(const void* input, size_t len, const void* secret, size_t secretSize, XXH64_hash_t seed) in XXH3_64bits_withSecretandSeed()
4712 XXH64_hash_t seed, in XXH3_reset_internal()
4759 XXH3_64bits_reset_withSeed(XXH3_state_t* statePtr, XXH64_hash_t seed) in XXH3_64bits_reset_withSeed()
4771 …thSecretandSeed(XXH3_state_t* statePtr, const void* secret, size_t secretSize, XXH64_hash_t seed64) in XXH3_64bits_reset_withSecretandSeed()
4941 XXH3_digest_long (XXH64_hash_t* acc, in XXH3_digest_long()
4975 XXH_PUBLIC_API XXH64_hash_t XXH3_64bits_digest (const XXH3_state_t* state) in XXH3_64bits_digest()
4979 XXH_ALIGN(XXH_ACC_ALIGN) XXH64_hash_t acc[XXH_ACC_NB]; in XXH3_64bits_digest()
5012 XXH3_len_1to3_128b(const xxh_u8* input, size_t len, const xxh_u8* secret, XXH64_hash_t seed) in XXH3_len_1to3_128b()
5041 XXH3_len_4to8_128b(const xxh_u8* input, size_t len, const xxh_u8* secret, XXH64_hash_t seed) in XXH3_len_4to8_128b()
5068 XXH3_len_9to16_128b(const xxh_u8* input, size_t len, const xxh_u8* secret, XXH64_hash_t seed) in XXH3_len_9to16_128b()
5143 XXH3_len_0to16_128b(const xxh_u8* input, size_t len, const xxh_u8* secret, XXH64_hash_t seed) in XXH3_len_0to16_128b()
5163 const xxh_u8* secret, XXH64_hash_t seed) in XXH128_mix32B()
5176 XXH64_hash_t seed) in XXH3_len_17to128_128b()
5200 h128.high64 = (XXH64_hash_t)0 - XXH3_avalanche(h128.high64); in XXH3_len_17to128_128b()
5209 XXH64_hash_t seed) in XXH3_len_129to240_128b()
5249 h128.high64 = (XXH64_hash_t)0 - XXH3_avalanche(h128.high64); in XXH3_len_129to240_128b()
5285 XXH64_hash_t seed64, in XXH3_hashLong_128b_default()
5299 XXH64_hash_t seed64, in XXH3_hashLong_128b_withSecret()
5309 XXH64_hash_t seed64, in XXH3_hashLong_128b_withSeed_internal()
5330 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_128b_withSeed()
5338 XXH64_hash_t, const void* XXH_RESTRICT, size_t);
5342 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen, in XXH3_128bits_internal()
5383 XXH3_128bits_withSeed(const void* input, size_t len, XXH64_hash_t seed) in XXH3_128bits_withSeed()
5392 …retandSeed(const void* input, size_t len, const void* secret, size_t secretSize, XXH64_hash_t seed) in XXH3_128bits_withSecretandSeed()
5401 XXH128(const void* input, size_t len, XXH64_hash_t seed) in XXH128()
5430 XXH3_128bits_reset_withSeed(XXH3_state_t* statePtr, XXH64_hash_t seed) in XXH3_128bits_reset_withSeed()
5437 …withSecretandSeed(XXH3_state_t* statePtr, const void* secret, size_t secretSize, XXH64_hash_t seed) in XXH3_128bits_reset_withSecretandSeed()
5455 XXH_ALIGN(XXH_ACC_ALIGN) XXH64_hash_t acc[XXH_ACC_NB]; in XXH3_128bits_digest()
5581 XXH3_generateSecret_fromSeed(void* secretBuffer, XXH64_hash_t seed) in XXH3_generateSecret_fromSeed()