Lines Matching refs:seed64

1206                                XXH64_hash_t seed64);
1211 XXH64_hash_t seed64);
1216 XXH64_hash_t seed64);
3570 const xxh_u8* XXH_RESTRICT secret, xxh_u64 seed64) in XXH3_mix16B() argument
3590 XXH_COMPILER_GUARD(seed64); in XXH3_mix16B()
3595 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
3596 input_hi ^ (XXH_readLE64(secret+8) - seed64) in XXH3_mix16B()
3821 XXH3_initCustomSecret_avx512(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_avx512() argument
3828 …st seed = _mm512_mask_set1_epi64(_mm512_set1_epi64((xxh_i64)seed64), 0xAA, (xxh_i64)(0U - seed64)); in XXH3_initCustomSecret_avx512()
3919 …NE XXH_TARGET_AVX2 void XXH3_initCustomSecret_avx2(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_avx2() argument
3926 …nst seed = _mm256_set_epi64x((xxh_i64)(0U - seed64), (xxh_i64)seed64, (xxh_i64)(0U - seed64), (xxh… in XXH3_initCustomSecret_avx2()
4025 …NE XXH_TARGET_SSE2 void XXH3_initCustomSecret_sse2(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_sse2() argument
4033 XXH_ALIGN(16) const xxh_i64 seed64x2[2] = { (xxh_i64)seed64, (xxh_i64)(0U - seed64) }; in XXH3_initCustomSecret_sse2()
4036 __m128i const seed = _mm_set_epi64x((xxh_i64)(0U - seed64), (xxh_i64)seed64); in XXH3_initCustomSecret_sse2()
4262 XXH3_initCustomSecret_scalar(void* XXH_RESTRICT customSecret, xxh_u64 seed64) in XXH3_initCustomSecret_scalar() argument
4318 xxh_u64 lo = XXH_readLE64(kSecretPtr + 16*i) + seed64; in XXH3_initCustomSecret_scalar()
4319 xxh_u64 hi = XXH_readLE64(kSecretPtr + 16*i + 8) - seed64; in XXH3_initCustomSecret_scalar()
4501 … XXH64_hash_t seed64, const xxh_u8* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_64b_withSecret() argument
4503 (void)seed64; in XXH3_hashLong_64b_withSecret()
4515 XXH64_hash_t seed64, const xxh_u8* XXH_RESTRICT secret, size_t secretLen) in XXH3_hashLong_64b_default() argument
4517 (void)seed64; (void)secret; (void)secretLen; in XXH3_hashLong_64b_default()
4568 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen, in XXH3_64bits_internal() argument
4580 return XXH3_len_0to16_64b((const xxh_u8*)input, len, (const xxh_u8*)secret, seed64); in XXH3_64bits_internal()
4582 … return XXH3_len_17to128_64b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_64bits_internal()
4584 … return XXH3_len_129to240_64b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_64bits_internal()
4585 return f_hashLong(input, len, seed64, (const xxh_u8*)secret, secretLen); in XXH3_64bits_internal()
4771 …thSecretandSeed(XXH3_state_t* statePtr, const void* secret, size_t secretSize, XXH64_hash_t seed64) in XXH3_64bits_reset_withSecretandSeed() argument
4776 XXH3_reset_internal(statePtr, seed64, secret, secretSize); in XXH3_64bits_reset_withSecretandSeed()
5285 XXH64_hash_t seed64, in XXH3_hashLong_128b_default() argument
5288 (void)seed64; (void)secret; (void)secretLen; in XXH3_hashLong_128b_default()
5299 XXH64_hash_t seed64, in XXH3_hashLong_128b_withSecret() argument
5302 (void)seed64; in XXH3_hashLong_128b_withSecret()
5309 XXH64_hash_t seed64, in XXH3_hashLong_128b_withSeed_internal() argument
5314 if (seed64 == 0) in XXH3_hashLong_128b_withSeed_internal()
5319 f_initSec(secret, 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() argument
5333 return XXH3_hashLong_128b_withSeed_internal(input, len, seed64, in XXH3_hashLong_128b_withSeed()
5342 XXH64_hash_t seed64, const void* XXH_RESTRICT secret, size_t secretLen, in XXH3_128bits_internal() argument
5353 return XXH3_len_0to16_128b((const xxh_u8*)input, len, (const xxh_u8*)secret, seed64); in XXH3_128bits_internal()
5355 … return XXH3_len_17to128_128b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_128bits_internal()
5357 …return XXH3_len_129to240_128b((const xxh_u8*)input, len, (const xxh_u8*)secret, secretLen, seed64); in XXH3_128bits_internal()
5358 return f_hl128(input, len, seed64, secret, secretLen); in XXH3_128bits_internal()