Lines Matching refs:input

415 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t length, XXH32_hash_t seed);
533 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t lengt…
709 XXH_PUBLIC_API XXH64_hash_t XXH64(const void* input, size_t length, XXH64_hash_t seed);
723 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt…
864 XXH_PUBLIC_API XXH_errorcode XXH3_64bits_update (XXH3_state_t* statePtr, const void* input, size_t …
907 XXH_PUBLIC_API XXH_errorcode XXH3_128bits_update (XXH3_state_t* statePtr, const void* input, size_t…
1944 static xxh_u32 XXH32_round(xxh_u32 acc, xxh_u32 input) in XXH32_round() argument
1946 acc += input * XXH_PRIME32_2; in XXH32_round()
2114 XXH32_endian_align(const xxh_u8* input, size_t len, xxh_u32 seed, XXH_alignment align) in XXH32_endian_align() argument
2118 if (input==NULL) XXH_ASSERT(len == 0); in XXH32_endian_align()
2121 const xxh_u8* const bEnd = input + len; in XXH32_endian_align()
2129 v1 = XXH32_round(v1, XXH_get32bits(input)); input += 4; in XXH32_endian_align()
2130 v2 = XXH32_round(v2, XXH_get32bits(input)); input += 4; in XXH32_endian_align()
2131 v3 = XXH32_round(v3, XXH_get32bits(input)); input += 4; in XXH32_endian_align()
2132 v4 = XXH32_round(v4, XXH_get32bits(input)); input += 4; in XXH32_endian_align()
2133 } while (input < limit); in XXH32_endian_align()
2143 return XXH32_finalize(h32, input, len&15, align); in XXH32_endian_align()
2147 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t len, XXH32_hash_t seed) in XXH32() argument
2153 XXH32_update(&state, (const xxh_u8*)input, len); in XXH32()
2157 … if ((((size_t)input) & 3) == 0) { /* Input is 4-bytes aligned, leverage the speed benefit */ in XXH32()
2158 return XXH32_endian_align((const xxh_u8*)input, len, seed, XXH_aligned); in XXH32()
2161 return XXH32_endian_align((const xxh_u8*)input, len, seed, XXH_unaligned); in XXH32()
2205 XXH32_update(XXH32_state_t* state, const void* input, size_t len) in XXH32_update() argument
2207 if (input==NULL) { in XXH32_update()
2212 { const xxh_u8* p = (const xxh_u8*)input; in XXH32_update()
2219 XXH_memcpy((xxh_u8*)(state->mem32) + state->memsize, input, len); in XXH32_update()
2225 XXH_memcpy((xxh_u8*)(state->mem32) + state->memsize, input, 16-state->memsize); in XXH32_update()
2462 static xxh_u64 XXH64_round(xxh_u64 acc, xxh_u64 input) in XXH64_round() argument
2464 acc += input * XXH_PRIME64_2; in XXH64_round()
2528 XXH64_endian_align(const xxh_u8* input, size_t len, xxh_u64 seed, XXH_alignment align) in XXH64_endian_align() argument
2531 if (input==NULL) XXH_ASSERT(len == 0); in XXH64_endian_align()
2534 const xxh_u8* const bEnd = input + len; in XXH64_endian_align()
2542 v1 = XXH64_round(v1, XXH_get64bits(input)); input+=8; in XXH64_endian_align()
2543 v2 = XXH64_round(v2, XXH_get64bits(input)); input+=8; in XXH64_endian_align()
2544 v3 = XXH64_round(v3, XXH_get64bits(input)); input+=8; in XXH64_endian_align()
2545 v4 = XXH64_round(v4, XXH_get64bits(input)); input+=8; in XXH64_endian_align()
2546 } while (input<limit); in XXH64_endian_align()
2560 return XXH64_finalize(h64, input, len, align); in XXH64_endian_align()
2565 XXH_PUBLIC_API XXH64_hash_t XXH64 (const void* input, size_t len, XXH64_hash_t seed) in XXH64() argument
2571 XXH64_update(&state, (const xxh_u8*)input, len); in XXH64()
2575 if ((((size_t)input) & 7)==0) { /* Input is aligned, let's leverage the speed advantage */ in XXH64()
2576 return XXH64_endian_align((const xxh_u8*)input, len, seed, XXH_aligned); in XXH64()
2579 return XXH64_endian_align((const xxh_u8*)input, len, seed, XXH_unaligned); in XXH64()
2620 XXH64_update (XXH64_state_t* state, const void* input, size_t len) in XXH64_update() argument
2622 if (input==NULL) { in XXH64_update()
2627 { const xxh_u8* p = (const xxh_u8*)input; in XXH64_update()
2633 XXH_memcpy(((xxh_u8*)state->mem64) + state->memsize, input, len); in XXH64_update()
2639 XXH_memcpy(((xxh_u8*)state->mem64) + state->memsize, input, 32-state->memsize); in XXH64_update()
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() argument
3480 XXH_ASSERT(input != NULL); in XXH3_len_1to3_64b()
3488 { xxh_u8 const c1 = input[0]; in XXH3_len_1to3_64b()
3489 xxh_u8 const c2 = input[len >> 1]; in XXH3_len_1to3_64b()
3490 xxh_u8 const c3 = input[len - 1]; in XXH3_len_1to3_64b()
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() argument
3502 XXH_ASSERT(input != NULL); in XXH3_len_4to8_64b()
3506 { xxh_u32 const input1 = XXH_readLE32(input); in XXH3_len_4to8_64b()
3507 xxh_u32 const input2 = XXH_readLE32(input + len - 4); in XXH3_len_4to8_64b()
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() argument
3518 XXH_ASSERT(input != NULL); in XXH3_len_9to16_64b()
3523 xxh_u64 const input_lo = XXH_readLE64(input) ^ bitflip1; in XXH3_len_9to16_64b()
3524 xxh_u64 const input_hi = XXH_readLE64(input + len - 8) ^ bitflip2; in XXH3_len_9to16_64b()
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() argument
3536 { if (XXH_likely(len > 8)) return XXH3_len_9to16_64b(input, len, secret, seed); in XXH3_len_0to16_64b()
3537 if (XXH_likely(len >= 4)) return XXH3_len_4to8_64b(input, len, secret, seed); in XXH3_len_0to16_64b()
3538 if (len) return XXH3_len_1to3_64b(input, len, secret, seed); in XXH3_len_0to16_64b()
3569 XXH_FORCE_INLINE xxh_u64 XXH3_mix16B(const xxh_u8* XXH_RESTRICT input, in XXH3_mix16B() argument
3592 { xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_mix16B()
3593 xxh_u64 const input_hi = XXH_readLE64(input+8); in XXH3_mix16B()
3603 XXH3_len_17to128_64b(const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_len_17to128_64b() argument
3614 acc += XXH3_mix16B(input+48, secret+96, seed); in XXH3_len_17to128_64b()
3615 acc += XXH3_mix16B(input+len-64, secret+112, seed); in XXH3_len_17to128_64b()
3617 acc += XXH3_mix16B(input+32, secret+64, seed); in XXH3_len_17to128_64b()
3618 acc += XXH3_mix16B(input+len-48, secret+80, seed); in XXH3_len_17to128_64b()
3620 acc += XXH3_mix16B(input+16, secret+32, seed); in XXH3_len_17to128_64b()
3621 acc += XXH3_mix16B(input+len-32, secret+48, seed); in XXH3_len_17to128_64b()
3623 acc += XXH3_mix16B(input+0, secret+0, seed); in XXH3_len_17to128_64b()
3624 acc += XXH3_mix16B(input+len-16, secret+16, seed); in XXH3_len_17to128_64b()
3633 XXH3_len_129to240_64b(const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_len_129to240_64b() argument
3647 acc += XXH3_mix16B(input+(16*i), secret+(16*i), seed); in XXH3_len_129to240_64b()
3677 acc += XXH3_mix16B(input+(16*i), secret+(16*(i-8)) + XXH3_MIDSIZE_STARTOFFSET, seed); in XXH3_len_129to240_64b()
3680 …acc += XXH3_mix16B(input + len - 16, secret + XXH3_SECRET_SIZE_MIN - XXH3_MIDSIZE_LASTOFFSET, seed… in XXH3_len_129to240_64b()
3749 const void* XXH_RESTRICT input, in XXH3_accumulate_512_avx512() argument
3758 __m512i const data_vec = _mm512_loadu_si512 (input); in XXH3_accumulate_512_avx512()
3858 const void* XXH_RESTRICT input, in XXH3_accumulate_512_avx2() argument
3865 const __m256i* const xinput = (const __m256i *) input; in XXH3_accumulate_512_avx2()
3963 const void* XXH_RESTRICT input, in XXH3_accumulate_512_sse2() argument
3971 const __m128i* const xinput = (const __m128i *) input; in XXH3_accumulate_512_sse2()
4064 const void* XXH_RESTRICT input, in XXH3_accumulate_512_neon() argument
4071 uint8_t const* const xinput = (const uint8_t *) input; in XXH3_accumulate_512_neon()
4158 const void* XXH_RESTRICT input, in XXH3_accumulate_512_vsx() argument
4163 xxh_u64x2 const* const xinput = (xxh_u64x2 const*) input; /* no alignment restriction */ in XXH3_accumulate_512_vsx()
4228 const void* XXH_RESTRICT input, in XXH3_accumulate_512_scalar() argument
4232 const xxh_u8* const xinput = (const xxh_u8*) input; /* no alignment restriction */ in XXH3_accumulate_512_scalar()
4390 const xxh_u8* XXH_RESTRICT input, in XXH3_accumulate() argument
4397 const xxh_u8* const in = input + n*XXH_STRIPE_LEN; in XXH3_accumulate()
4407 const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_hashLong_internal_loop() argument
4421 XXH3_accumulate(acc, input + n*block_len, secret, nbStripesPerBlock, f_acc512); in XXH3_hashLong_internal_loop()
4429 XXH3_accumulate(acc, input + nb_blocks*block_len, secret, nbStripes, f_acc512); in XXH3_hashLong_internal_loop()
4432 { const xxh_u8* const p = input + len - XXH_STRIPE_LEN; in XXH3_hashLong_internal_loop()
4477 XXH3_hashLong_64b_internal(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_64b_internal() argument
4484 …XXH3_hashLong_internal_loop(acc, (const xxh_u8*)input, len, (const xxh_u8*)secret, secretSize, f_a… in XXH3_hashLong_64b_internal()
4500 XXH3_hashLong_64b_withSecret(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_64b_withSecret() argument
4504 …return XXH3_hashLong_64b_internal(input, len, secret, secretLen, XXH3_accumulate_512, XXH3_scrambl… in XXH3_hashLong_64b_withSecret()
4514 XXH3_hashLong_64b_default(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_64b_default() argument
4518 …return XXH3_hashLong_64b_internal(input, len, XXH3_kSecret, sizeof(XXH3_kSecret), XXH3_accumulate_… in XXH3_hashLong_64b_default()
4533 XXH3_hashLong_64b_withSeed_internal(const void* input, size_t len, in XXH3_hashLong_64b_withSeed_internal() argument
4540 return XXH3_hashLong_64b_internal(input, len, in XXH3_hashLong_64b_withSeed_internal()
4545 return XXH3_hashLong_64b_internal(input, len, secret, sizeof(secret), in XXH3_hashLong_64b_withSeed_internal()
4554 XXH3_hashLong_64b_withSeed(const void* input, size_t len, in XXH3_hashLong_64b_withSeed() argument
4558 return XXH3_hashLong_64b_withSeed_internal(input, len, seed, in XXH3_hashLong_64b_withSeed()
4567 XXH3_64bits_internal(const void* XXH_RESTRICT input, size_t len, 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()
4592 XXH_PUBLIC_API XXH64_hash_t XXH3_64bits(const void* input, size_t len) in XXH3_64bits() argument
4594 …return XXH3_64bits_internal(input, len, 0, XXH3_kSecret, sizeof(XXH3_kSecret), XXH3_hashLong_64b_d… in XXH3_64bits()
4599 XXH3_64bits_withSecret(const void* input, size_t len, const void* secret, size_t secretSize) in XXH3_64bits_withSecret() argument
4601 return XXH3_64bits_internal(input, len, 0, secret, secretSize, XXH3_hashLong_64b_withSecret); in XXH3_64bits_withSecret()
4606 XXH3_64bits_withSeed(const void* input, size_t len, XXH64_hash_t seed) in XXH3_64bits_withSeed() argument
4608 …return XXH3_64bits_internal(input, len, seed, XXH3_kSecret, sizeof(XXH3_kSecret), XXH3_hashLong_64… in XXH3_64bits_withSeed()
4612 XXH3_64bits_withSecretandSeed(const void* input, size_t len, const void* secret, size_t secretSize,… in XXH3_64bits_withSecretandSeed() argument
4615 return XXH3_64bits_internal(input, len, seed, XXH3_kSecret, sizeof(XXH3_kSecret), NULL); in XXH3_64bits_withSecretandSeed()
4616 return XXH3_hashLong_64b_withSecret(input, len, seed, (const xxh_u8*)secret, secretSize); in XXH3_64bits_withSecretandSeed()
4787 const xxh_u8* XXH_RESTRICT input, size_t nbStripes, in XXH3_consumeStripes() argument
4798 …XXH3_accumulate(acc, input, secret + nbStripesSoFarPtr[0] * XXH_SECRET_CONSUME_RATE, nbStripesToEn… in XXH3_consumeStripes()
4800 …XXH3_accumulate(acc, input + nbStripesToEndofBlock * XXH_STRIPE_LEN, secret, nbStripesAfterBlock, … in XXH3_consumeStripes()
4803 …XXH3_accumulate(acc, input, secret + nbStripesSoFarPtr[0] * XXH_SECRET_CONSUME_RATE, nbStripes, f_… in XXH3_consumeStripes()
4818 const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_update() argument
4822 if (input==NULL) { in XXH3_update()
4828 { const xxh_u8* const bEnd = input + len; in XXH3_update()
4844 XXH_memcpy(state->buffer + state->bufferedSize, input, len); in XXH3_update()
4859 XXH_memcpy(state->buffer + state->bufferedSize, input, loadSize); in XXH3_update()
4860 input += loadSize; in XXH3_update()
4868 XXH_ASSERT(input < bEnd); in XXH3_update()
4871 if ((size_t)(bEnd - input) > state->nbStripesPerBlock * XXH_STRIPE_LEN) { in XXH3_update()
4872 size_t nbStripes = (size_t)(bEnd - 1 - input) / XXH_STRIPE_LEN; in XXH3_update()
4877 …XXH3_accumulate(acc, input, secret + state->nbStripesSoFar * XXH_SECRET_CONSUME_RATE, nbStripesToE… in XXH3_update()
4880 input += nbStripesToEnd * XXH_STRIPE_LEN; in XXH3_update()
4885 XXH3_accumulate(acc, input, secret, state->nbStripesPerBlock, f_acc512); in XXH3_update()
4887 input += state->nbStripesPerBlock * XXH_STRIPE_LEN; in XXH3_update()
4891 XXH3_accumulate(acc, input, secret, nbStripes, f_acc512); in XXH3_update()
4892 input += nbStripes * XXH_STRIPE_LEN; in XXH3_update()
4893 XXH_ASSERT(input < bEnd); /* at least some bytes left */ in XXH3_update()
4896 …XXH_memcpy(state->buffer + sizeof(state->buffer) - XXH_STRIPE_LEN, input - XXH_STRIPE_LEN, XXH_STR… in XXH3_update()
4897 XXH_ASSERT(bEnd - input <= XXH_STRIPE_LEN); in XXH3_update()
4901 if (bEnd - input > XXH3_INTERNALBUFFER_SIZE) { in XXH3_update()
4906 input, XXH3_INTERNALBUFFER_STRIPES, in XXH3_update()
4909 input += XXH3_INTERNALBUFFER_SIZE; in XXH3_update()
4910 } while (input<limit); in XXH3_update()
4912 …XXH_memcpy(state->buffer + sizeof(state->buffer) - XXH_STRIPE_LEN, input - XXH_STRIPE_LEN, XXH_STR… in XXH3_update()
4917 XXH_ASSERT(input < bEnd); in XXH3_update()
4918 XXH_ASSERT(bEnd - input <= XXH3_INTERNALBUFFER_SIZE); in XXH3_update()
4920 XXH_memcpy(state->buffer, input, (size_t)(bEnd-input)); in XXH3_update()
4921 state->bufferedSize = (XXH32_hash_t)(bEnd-input); in XXH3_update()
4933 XXH3_64bits_update(XXH3_state_t* state, const void* input, size_t len) in XXH3_64bits_update() argument
4935 return XXH3_update(state, (const xxh_u8*)input, len, in XXH3_64bits_update()
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() argument
5015 XXH_ASSERT(input != NULL); in XXH3_len_1to3_128b()
5023 { xxh_u8 const c1 = input[0]; in XXH3_len_1to3_128b()
5024 xxh_u8 const c2 = input[len >> 1]; in XXH3_len_1to3_128b()
5025 xxh_u8 const c3 = input[len - 1]; 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() argument
5043 XXH_ASSERT(input != NULL); in XXH3_len_4to8_128b()
5047 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_128b()
5048 xxh_u32 const input_hi = XXH_readLE32(input + len - 4); 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() argument
5070 XXH_ASSERT(input != NULL); in XXH3_len_9to16_128b()
5075 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_len_9to16_128b()
5076 xxh_u64 input_hi = XXH_readLE64(input + len - 8); 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() argument
5146 { if (len > 8) return XXH3_len_9to16_128b(input, len, secret, seed); in XXH3_len_0to16_128b()
5147 if (len >= 4) return XXH3_len_4to8_128b(input, len, secret, seed); in XXH3_len_0to16_128b()
5148 if (len) return XXH3_len_1to3_128b(input, len, secret, seed); in XXH3_len_0to16_128b()
5174 XXH3_len_17to128_128b(const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_len_17to128_128b() argument
5187 acc = XXH128_mix32B(acc, input+48, input+len-64, secret+96, seed); in XXH3_len_17to128_128b()
5189 acc = XXH128_mix32B(acc, input+32, input+len-48, secret+64, seed); in XXH3_len_17to128_128b()
5191 acc = XXH128_mix32B(acc, input+16, input+len-32, secret+32, seed); in XXH3_len_17to128_128b()
5193 acc = XXH128_mix32B(acc, input, input+len-16, secret, seed); in XXH3_len_17to128_128b()
5207 XXH3_len_129to240_128b(const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_len_129to240_128b() argument
5221 input + (32 * i), in XXH3_len_129to240_128b()
5222 input + (32 * i) + 16, in XXH3_len_129to240_128b()
5231 input + (32 * i), in XXH3_len_129to240_128b()
5232 input + (32 * i) + 16, in XXH3_len_129to240_128b()
5238 input + len - 16, in XXH3_len_129to240_128b()
5239 input + len - 32, in XXH3_len_129to240_128b()
5256 XXH3_hashLong_128b_internal(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_128b_internal() argument
5263 …XXH3_hashLong_internal_loop(acc, (const xxh_u8*)input, len, secret, secretSize, f_acc512, f_scramb… in XXH3_hashLong_128b_internal()
5284 XXH3_hashLong_128b_default(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_128b_default() argument
5289 return XXH3_hashLong_128b_internal(input, len, XXH3_kSecret, sizeof(XXH3_kSecret), in XXH3_hashLong_128b_default()
5298 XXH3_hashLong_128b_withSecret(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_128b_withSecret() argument
5303 return XXH3_hashLong_128b_internal(input, len, (const xxh_u8*)secret, secretLen, in XXH3_hashLong_128b_withSecret()
5308 XXH3_hashLong_128b_withSeed_internal(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_128b_withSeed_internal() argument
5315 return XXH3_hashLong_128b_internal(input, len, in XXH3_hashLong_128b_withSeed_internal()
5320 return XXH3_hashLong_128b_internal(input, len, (const xxh_u8*)secret, sizeof(secret), in XXH3_hashLong_128b_withSeed_internal()
5329 XXH3_hashLong_128b_withSeed(const void* input, size_t len, in XXH3_hashLong_128b_withSeed() argument
5333 return XXH3_hashLong_128b_withSeed_internal(input, len, seed64, in XXH3_hashLong_128b_withSeed()
5341 XXH3_128bits_internal(const void* input, size_t len, 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()
5365 XXH_PUBLIC_API XXH128_hash_t XXH3_128bits(const void* input, size_t len) in XXH3_128bits() argument
5367 return XXH3_128bits_internal(input, len, 0, in XXH3_128bits()
5374 XXH3_128bits_withSecret(const void* input, size_t len, const void* secret, size_t secretSize) in XXH3_128bits_withSecret() argument
5376 return XXH3_128bits_internal(input, len, 0, in XXH3_128bits_withSecret()
5383 XXH3_128bits_withSeed(const void* input, size_t len, XXH64_hash_t seed) in XXH3_128bits_withSeed() argument
5385 return XXH3_128bits_internal(input, len, seed, in XXH3_128bits_withSeed()
5392 XXH3_128bits_withSecretandSeed(const void* input, size_t len, const void* secret, size_t secretSize… in XXH3_128bits_withSecretandSeed() argument
5395 return XXH3_128bits_internal(input, len, seed, XXH3_kSecret, sizeof(XXH3_kSecret), NULL); in XXH3_128bits_withSecretandSeed()
5396 return XXH3_hashLong_128b_withSecret(input, len, seed, secret, secretSize); in XXH3_128bits_withSecretandSeed()
5401 XXH128(const void* input, size_t len, XXH64_hash_t seed) in XXH128() argument
5403 return XXH3_128bits_withSeed(input, len, seed); in XXH128()
5444 XXH3_128bits_update(XXH3_state_t* state, const void* input, size_t len) in XXH3_128bits_update() argument
5446 return XXH3_update(state, (const xxh_u8*)input, len, in XXH3_128bits_update()