Lines Matching refs:seed64
1206 XXH64_hash_t seed64);
1211 XXH64_hash_t seed64);
1216 XXH64_hash_t seed64);
3539 const xxh_u8* XXH_RESTRICT secret, xxh_u64 seed64) in XXH3_mix16B() argument
3559 XXH_COMPILER_GUARD(seed64); in XXH3_mix16B()
3564 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
3565 input_hi ^ (XXH_readLE64(secret+8) - seed64) in XXH3_mix16B()
3790 XXH3_initCustomSecret_avx512(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_avx512() argument
3797 …st seed = _mm512_mask_set1_epi64(_mm512_set1_epi64((xxh_i64)seed64), 0xAA, (xxh_i64)(0U - seed64)); in XXH3_initCustomSecret_avx512()
3888 …NE XXH_TARGET_AVX2 void XXH3_initCustomSecret_avx2(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_avx2() argument
3895 …nst seed = _mm256_set_epi64x((xxh_i64)(0U - seed64), (xxh_i64)seed64, (xxh_i64)(0U - seed64), (xxh… in XXH3_initCustomSecret_avx2()
3994 …NE XXH_TARGET_SSE2 void XXH3_initCustomSecret_sse2(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_sse2() argument
4002 XXH_ALIGN(16) const xxh_i64 seed64x2[2] = { (xxh_i64)seed64, (xxh_i64)(0U - seed64) }; in XXH3_initCustomSecret_sse2()
4005 __m128i const seed = _mm_set_epi64x((xxh_i64)(0U - seed64), (xxh_i64)seed64); in XXH3_initCustomSecret_sse2()
4231 XXH3_initCustomSecret_scalar(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_scalar() argument
4287 xxh_u64 lo = XXH_readLE64(kSecretPtr + 16*i) + seed64; in XXH3_initCustomSecret_scalar()
4288 xxh_u64 hi = XXH_readLE64(kSecretPtr + 16*i + 8) - seed64; in XXH3_initCustomSecret_scalar()
4470 … XXH64_hash_t seed64, const xxh_u8* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_64b_withSecret() argument
4472 (void)seed64; in XXH3_hashLong_64b_withSecret()
4484 XXH64_hash_t seed64, const xxh_u8* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_64b_default() argument
4486 (void)seed64; (void)secret; (void)secretLen; in XXH3_hashLong_64b_default()
4537 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen, in XXH3_64bits_internal() argument
4549 return XXH3_len_0to16_64b((const xxh_u8*)input, len, (const xxh_u8*)secret, seed64); in XXH3_64bits_internal()
4551 … return XXH3_len_17to128_64b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_64bits_internal()
4553 … return XXH3_len_129to240_64b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_64bits_internal()
4554 return f_hashLong(input, len, seed64, (const xxh_u8*)secret, secretLen); in XXH3_64bits_internal()
4740 …thSecretandSeed(XXH3_state_t* statePtr, const void* secret, size_t secretSize, XXH64_hash_t seed64) in XXH3_64bits_reset_withSecretandSeed() argument
4745 XXH3_reset_internal(statePtr, seed64, secret, secretSize); in XXH3_64bits_reset_withSecretandSeed()
5254 XXH64_hash_t seed64, in XXH3_hashLong_128b_default() argument
5257 (void)seed64; (void)secret; (void)secretLen; in XXH3_hashLong_128b_default()
5268 XXH64_hash_t seed64, in XXH3_hashLong_128b_withSecret() argument
5271 (void)seed64; in XXH3_hashLong_128b_withSecret()
5278 XXH64_hash_t seed64, in XXH3_hashLong_128b_withSeed_internal() argument
5283 if (seed64 == 0) in XXH3_hashLong_128b_withSeed_internal()
5288 f_initSec(secret, seed64); in XXH3_hashLong_128b_withSeed_internal()
5299 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_128b_withSeed() argument
5302 return XXH3_hashLong_128b_withSeed_internal(input, len, seed64, in XXH3_hashLong_128b_withSeed()
5311 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen, in XXH3_128bits_internal() argument
5322 return XXH3_len_0to16_128b((const xxh_u8*)input, len, (const xxh_u8*)secret, seed64); in XXH3_128bits_internal()
5324 … return XXH3_len_17to128_128b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_128bits_internal()
5326 …return XXH3_len_129to240_128b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_128bits_internal()
5327 return f_hl128(input, len, seed64, secret, secretLen); in XXH3_128bits_internal()