Lines Matching refs:seed64

1203                                XXH64_hash_t seed64);
1208 XXH64_hash_t seed64);
1213 XXH64_hash_t seed64);
3560 const xxh_u8* XXH_RESTRICT secret, xxh_u64 seed64) in XXH3_mix16B() argument
3580 XXH_COMPILER_GUARD(seed64); in XXH3_mix16B()
3585 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
3586 input_hi ^ (XXH_readLE64(secret+8) - seed64) in XXH3_mix16B()
3812 XXH3_initCustomSecret_avx512(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_avx512() argument
3819 …st seed = _mm512_mask_set1_epi64(_mm512_set1_epi64((xxh_i64)seed64), 0xAA, (xxh_i64)(0U - seed64)); in XXH3_initCustomSecret_avx512()
3910 …NE XXH_TARGET_AVX2 void XXH3_initCustomSecret_avx2(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_avx2() argument
3917 …nst seed = _mm256_set_epi64x((xxh_i64)(0U - seed64), (xxh_i64)seed64, (xxh_i64)(0U - seed64), (xxh… in XXH3_initCustomSecret_avx2()
4016 …NE XXH_TARGET_SSE2 void XXH3_initCustomSecret_sse2(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_sse2() argument
4024 XXH_ALIGN(16) const xxh_i64 seed64x2[2] = { (xxh_i64)seed64, (xxh_i64)(0U - seed64) }; in XXH3_initCustomSecret_sse2()
4027 __m128i const seed = _mm_set_epi64x((xxh_i64)(0U - seed64), (xxh_i64)seed64); in XXH3_initCustomSecret_sse2()
4329 XXH3_initCustomSecret_scalar(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_scalar() argument
4389 xxh_u64 lo = XXH_readLE64(kSecretPtr + 16*i) + seed64; in XXH3_initCustomSecret_scalar()
4390 xxh_u64 hi = XXH_readLE64(kSecretPtr + 16*i + 8) - seed64; in XXH3_initCustomSecret_scalar()
4572 … XXH64_hash_t seed64, const xxh_u8* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_64b_withSecret() argument
4574 (void)seed64; in XXH3_hashLong_64b_withSecret()
4586 XXH64_hash_t seed64, const xxh_u8* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_64b_default() argument
4588 (void)seed64; (void)secret; (void)secretLen; in XXH3_hashLong_64b_default()
4639 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen, in XXH3_64bits_internal() argument
4651 return XXH3_len_0to16_64b((const xxh_u8*)input, len, (const xxh_u8*)secret, seed64); in XXH3_64bits_internal()
4653 … return XXH3_len_17to128_64b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_64bits_internal()
4655 … return XXH3_len_129to240_64b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_64bits_internal()
4656 return f_hashLong(input, len, seed64, (const xxh_u8*)secret, secretLen); in XXH3_64bits_internal()
4842 …thSecretandSeed(XXH3_state_t* statePtr, const void* secret, size_t secretSize, XXH64_hash_t seed64) in XXH3_64bits_reset_withSecretandSeed() argument
4847 XXH3_reset_internal(statePtr, seed64, secret, secretSize); in XXH3_64bits_reset_withSecretandSeed()
5356 XXH64_hash_t seed64, in XXH3_hashLong_128b_default() argument
5359 (void)seed64; (void)secret; (void)secretLen; in XXH3_hashLong_128b_default()
5370 XXH64_hash_t seed64, in XXH3_hashLong_128b_withSecret() argument
5373 (void)seed64; in XXH3_hashLong_128b_withSecret()
5380 XXH64_hash_t seed64, in XXH3_hashLong_128b_withSeed_internal() argument
5385 if (seed64 == 0) in XXH3_hashLong_128b_withSeed_internal()
5390 f_initSec(secret, seed64); in XXH3_hashLong_128b_withSeed_internal()
5401 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_128b_withSeed() argument
5404 return XXH3_hashLong_128b_withSeed_internal(input, len, seed64, in XXH3_hashLong_128b_withSeed()
5413 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen, in XXH3_128bits_internal() argument
5424 return XXH3_len_0to16_128b((const xxh_u8*)input, len, (const xxh_u8*)secret, seed64); in XXH3_128bits_internal()
5426 … return XXH3_len_17to128_128b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_128bits_internal()
5428 …return XXH3_len_129to240_128b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_128bits_internal()
5429 return f_hl128(input, len, seed64, secret, secretLen); in XXH3_128bits_internal()