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…
1913 static xxh_u32 XXH32_round(xxh_u32 acc, xxh_u32 input) in XXH32_round() argument
1915 acc += input * XXH_PRIME32_2; in XXH32_round()
2083 XXH32_endian_align(const xxh_u8* input, size_t len, xxh_u32 seed, XXH_alignment align) in XXH32_endian_align() argument
2087 if (input==NULL) XXH_ASSERT(len == 0); in XXH32_endian_align()
2090 const xxh_u8* const bEnd = input + len; in XXH32_endian_align()
2098 v1 = XXH32_round(v1, XXH_get32bits(input)); input += 4; in XXH32_endian_align()
2099 v2 = XXH32_round(v2, XXH_get32bits(input)); input += 4; in XXH32_endian_align()
2100 v3 = XXH32_round(v3, XXH_get32bits(input)); input += 4; in XXH32_endian_align()
2101 v4 = XXH32_round(v4, XXH_get32bits(input)); input += 4; in XXH32_endian_align()
2102 } while (input < limit); in XXH32_endian_align()
2112 return XXH32_finalize(h32, input, len&15, align); in XXH32_endian_align()
2116 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t len, XXH32_hash_t seed) in XXH32() argument
2122 XXH32_update(&state, (const xxh_u8*)input, len); in XXH32()
2126 … if ((((size_t)input) & 3) == 0) { /* Input is 4-bytes aligned, leverage the speed benefit */ in XXH32()
2127 return XXH32_endian_align((const xxh_u8*)input, len, seed, XXH_aligned); in XXH32()
2130 return XXH32_endian_align((const xxh_u8*)input, len, seed, XXH_unaligned); in XXH32()
2174 XXH32_update(XXH32_state_t* state, const void* input, size_t len) in XXH32_update() argument
2176 if (input==NULL) { in XXH32_update()
2181 { const xxh_u8* p = (const xxh_u8*)input; in XXH32_update()
2188 XXH_memcpy((xxh_u8*)(state->mem32) + state->memsize, input, len); in XXH32_update()
2194 XXH_memcpy((xxh_u8*)(state->mem32) + state->memsize, input, 16-state->memsize); in XXH32_update()
2431 static xxh_u64 XXH64_round(xxh_u64 acc, xxh_u64 input) in XXH64_round() argument
2433 acc += input * XXH_PRIME64_2; in XXH64_round()
2497 XXH64_endian_align(const xxh_u8* input, size_t len, xxh_u64 seed, XXH_alignment align) in XXH64_endian_align() argument
2500 if (input==NULL) XXH_ASSERT(len == 0); in XXH64_endian_align()
2503 const xxh_u8* const bEnd = input + len; in XXH64_endian_align()
2511 v1 = XXH64_round(v1, XXH_get64bits(input)); input+=8; in XXH64_endian_align()
2512 v2 = XXH64_round(v2, XXH_get64bits(input)); input+=8; in XXH64_endian_align()
2513 v3 = XXH64_round(v3, XXH_get64bits(input)); input+=8; in XXH64_endian_align()
2514 v4 = XXH64_round(v4, XXH_get64bits(input)); input+=8; in XXH64_endian_align()
2515 } while (input<limit); in XXH64_endian_align()
2529 return XXH64_finalize(h64, input, len, align); in XXH64_endian_align()
2534 XXH_PUBLIC_API XXH64_hash_t XXH64 (const void* input, size_t len, XXH64_hash_t seed) in XXH64() argument
2540 XXH64_update(&state, (const xxh_u8*)input, len); in XXH64()
2544 if ((((size_t)input) & 7)==0) { /* Input is aligned, let's leverage the speed advantage */ in XXH64()
2545 return XXH64_endian_align((const xxh_u8*)input, len, seed, XXH_aligned); in XXH64()
2548 return XXH64_endian_align((const xxh_u8*)input, len, seed, XXH_unaligned); in XXH64()
2589 XXH64_update (XXH64_state_t* state, const void* input, size_t len) in XXH64_update() argument
2591 if (input==NULL) { in XXH64_update()
2596 { const xxh_u8* p = (const xxh_u8*)input; in XXH64_update()
2602 XXH_memcpy(((xxh_u8*)state->mem64) + state->memsize, input, len); in XXH64_update()
2608 XXH_memcpy(((xxh_u8*)state->mem64) + state->memsize, input, 32-state->memsize); in XXH64_update()
3447 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
3449 XXH_ASSERT(input != NULL); in XXH3_len_1to3_64b()
3457 { xxh_u8 const c1 = input[0]; in XXH3_len_1to3_64b()
3458 xxh_u8 const c2 = input[len >> 1]; in XXH3_len_1to3_64b()
3459 xxh_u8 const c3 = input[len - 1]; in XXH3_len_1to3_64b()
3469 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
3471 XXH_ASSERT(input != NULL); in XXH3_len_4to8_64b()
3475 { xxh_u32 const input1 = XXH_readLE32(input); in XXH3_len_4to8_64b()
3476 xxh_u32 const input2 = XXH_readLE32(input + len - 4); in XXH3_len_4to8_64b()
3485 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
3487 XXH_ASSERT(input != NULL); in XXH3_len_9to16_64b()
3492 xxh_u64 const input_lo = XXH_readLE64(input) ^ bitflip1; in XXH3_len_9to16_64b()
3493 xxh_u64 const input_hi = XXH_readLE64(input + len - 8) ^ bitflip2; in XXH3_len_9to16_64b()
3502 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
3505 { if (XXH_likely(len > 8)) return XXH3_len_9to16_64b(input, len, secret, seed); in XXH3_len_0to16_64b()
3506 if (XXH_likely(len >= 4)) return XXH3_len_4to8_64b(input, len, secret, seed); in XXH3_len_0to16_64b()
3507 if (len) return XXH3_len_1to3_64b(input, len, secret, seed); in XXH3_len_0to16_64b()
3538 XXH_FORCE_INLINE xxh_u64 XXH3_mix16B(const xxh_u8* XXH_RESTRICT input, in XXH3_mix16B() argument
3561 { xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_mix16B()
3562 xxh_u64 const input_hi = XXH_readLE64(input+8); in XXH3_mix16B()
3572 XXH3_len_17to128_64b(const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_len_17to128_64b() argument
3583 acc += XXH3_mix16B(input+48, secret+96, seed); in XXH3_len_17to128_64b()
3584 acc += XXH3_mix16B(input+len-64, secret+112, seed); in XXH3_len_17to128_64b()
3586 acc += XXH3_mix16B(input+32, secret+64, seed); in XXH3_len_17to128_64b()
3587 acc += XXH3_mix16B(input+len-48, secret+80, seed); in XXH3_len_17to128_64b()
3589 acc += XXH3_mix16B(input+16, secret+32, seed); in XXH3_len_17to128_64b()
3590 acc += XXH3_mix16B(input+len-32, secret+48, seed); in XXH3_len_17to128_64b()
3592 acc += XXH3_mix16B(input+0, secret+0, seed); in XXH3_len_17to128_64b()
3593 acc += XXH3_mix16B(input+len-16, secret+16, seed); in XXH3_len_17to128_64b()
3602 XXH3_len_129to240_64b(const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_len_129to240_64b() argument
3616 acc += XXH3_mix16B(input+(16*i), secret+(16*i), seed); in XXH3_len_129to240_64b()
3646 acc += XXH3_mix16B(input+(16*i), secret+(16*(i-8)) + XXH3_MIDSIZE_STARTOFFSET, seed); in XXH3_len_129to240_64b()
3649 …acc += XXH3_mix16B(input + len - 16, secret + XXH3_SECRET_SIZE_MIN - XXH3_MIDSIZE_LASTOFFSET, seed… in XXH3_len_129to240_64b()
3718 const void* XXH_RESTRICT input, in XXH3_accumulate_512_avx512() argument
3727 __m512i const data_vec = _mm512_loadu_si512 (input); in XXH3_accumulate_512_avx512()
3827 const void* XXH_RESTRICT input, in XXH3_accumulate_512_avx2() argument
3834 const __m256i* const xinput = (const __m256i *) input; in XXH3_accumulate_512_avx2()
3932 const void* XXH_RESTRICT input, in XXH3_accumulate_512_sse2() argument
3940 const __m128i* const xinput = (const __m128i *) input; in XXH3_accumulate_512_sse2()
4033 const void* XXH_RESTRICT input, in XXH3_accumulate_512_neon() argument
4040 uint8_t const* const xinput = (const uint8_t *) input; in XXH3_accumulate_512_neon()
4127 const void* XXH_RESTRICT input, in XXH3_accumulate_512_vsx() argument
4132 xxh_u64x2 const* const xinput = (xxh_u64x2 const*) input; /* no alignment restriction */ in XXH3_accumulate_512_vsx()
4197 const void* XXH_RESTRICT input, in XXH3_accumulate_512_scalar() argument
4201 const xxh_u8* const xinput = (const xxh_u8*) input; /* no alignment restriction */ in XXH3_accumulate_512_scalar()
4359 const xxh_u8* XXH_RESTRICT input, in XXH3_accumulate() argument
4366 const xxh_u8* const in = input + n*XXH_STRIPE_LEN; in XXH3_accumulate()
4376 const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_hashLong_internal_loop() argument
4390 XXH3_accumulate(acc, input + n*block_len, secret, nbStripesPerBlock, f_acc512); in XXH3_hashLong_internal_loop()
4398 XXH3_accumulate(acc, input + nb_blocks*block_len, secret, nbStripes, f_acc512); in XXH3_hashLong_internal_loop()
4401 { const xxh_u8* const p = input + len - XXH_STRIPE_LEN; in XXH3_hashLong_internal_loop()
4446 XXH3_hashLong_64b_internal(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_64b_internal() argument
4453 …XXH3_hashLong_internal_loop(acc, (const xxh_u8*)input, len, (const xxh_u8*)secret, secretSize, f_a… in XXH3_hashLong_64b_internal()
4469 XXH3_hashLong_64b_withSecret(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_64b_withSecret() argument
4473 …return XXH3_hashLong_64b_internal(input, len, secret, secretLen, XXH3_accumulate_512, XXH3_scrambl… in XXH3_hashLong_64b_withSecret()
4483 XXH3_hashLong_64b_default(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_64b_default() argument
4487 …return XXH3_hashLong_64b_internal(input, len, XXH3_kSecret, sizeof(XXH3_kSecret), XXH3_accumulate_… in XXH3_hashLong_64b_default()
4502 XXH3_hashLong_64b_withSeed_internal(const void* input, size_t len, in XXH3_hashLong_64b_withSeed_internal() argument
4509 return XXH3_hashLong_64b_internal(input, len, in XXH3_hashLong_64b_withSeed_internal()
4514 return XXH3_hashLong_64b_internal(input, len, secret, sizeof(secret), in XXH3_hashLong_64b_withSeed_internal()
4523 XXH3_hashLong_64b_withSeed(const void* input, size_t len, in XXH3_hashLong_64b_withSeed() argument
4527 return XXH3_hashLong_64b_withSeed_internal(input, len, seed, in XXH3_hashLong_64b_withSeed()
4536 XXH3_64bits_internal(const void* XXH_RESTRICT input, size_t len, 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()
4561 XXH_PUBLIC_API XXH64_hash_t XXH3_64bits(const void* input, size_t len) in XXH3_64bits() argument
4563 …return XXH3_64bits_internal(input, len, 0, XXH3_kSecret, sizeof(XXH3_kSecret), XXH3_hashLong_64b_d… in XXH3_64bits()
4568 XXH3_64bits_withSecret(const void* input, size_t len, const void* secret, size_t secretSize) in XXH3_64bits_withSecret() argument
4570 return XXH3_64bits_internal(input, len, 0, secret, secretSize, XXH3_hashLong_64b_withSecret); in XXH3_64bits_withSecret()
4575 XXH3_64bits_withSeed(const void* input, size_t len, XXH64_hash_t seed) in XXH3_64bits_withSeed() argument
4577 …return XXH3_64bits_internal(input, len, seed, XXH3_kSecret, sizeof(XXH3_kSecret), XXH3_hashLong_64… in XXH3_64bits_withSeed()
4581 XXH3_64bits_withSecretandSeed(const void* input, size_t len, const void* secret, size_t secretSize,… in XXH3_64bits_withSecretandSeed() argument
4584 return XXH3_64bits_internal(input, len, seed, XXH3_kSecret, sizeof(XXH3_kSecret), NULL); in XXH3_64bits_withSecretandSeed()
4585 return XXH3_hashLong_64b_withSecret(input, len, seed, (const xxh_u8*)secret, secretSize); in XXH3_64bits_withSecretandSeed()
4756 const xxh_u8* XXH_RESTRICT input, size_t nbStripes, in XXH3_consumeStripes() argument
4767 …XXH3_accumulate(acc, input, secret + nbStripesSoFarPtr[0] * XXH_SECRET_CONSUME_RATE, nbStripesToEn… in XXH3_consumeStripes()
4769 …XXH3_accumulate(acc, input + nbStripesToEndofBlock * XXH_STRIPE_LEN, secret, nbStripesAfterBlock, … in XXH3_consumeStripes()
4772 …XXH3_accumulate(acc, input, secret + nbStripesSoFarPtr[0] * XXH_SECRET_CONSUME_RATE, nbStripes, f_… in XXH3_consumeStripes()
4787 const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_update() argument
4791 if (input==NULL) { in XXH3_update()
4797 { const xxh_u8* const bEnd = input + len; in XXH3_update()
4813 XXH_memcpy(state->buffer + state->bufferedSize, input, len); in XXH3_update()
4828 XXH_memcpy(state->buffer + state->bufferedSize, input, loadSize); in XXH3_update()
4829 input += loadSize; in XXH3_update()
4837 XXH_ASSERT(input < bEnd); in XXH3_update()
4840 if ((size_t)(bEnd - input) > state->nbStripesPerBlock * XXH_STRIPE_LEN) { in XXH3_update()
4841 size_t nbStripes = (size_t)(bEnd - 1 - input) / XXH_STRIPE_LEN; in XXH3_update()
4846 …XXH3_accumulate(acc, input, secret + state->nbStripesSoFar * XXH_SECRET_CONSUME_RATE, nbStripesToE… in XXH3_update()
4849 input += nbStripesToEnd * XXH_STRIPE_LEN; in XXH3_update()
4854 XXH3_accumulate(acc, input, secret, state->nbStripesPerBlock, f_acc512); in XXH3_update()
4856 input += state->nbStripesPerBlock * XXH_STRIPE_LEN; in XXH3_update()
4860 XXH3_accumulate(acc, input, secret, nbStripes, f_acc512); in XXH3_update()
4861 input += nbStripes * XXH_STRIPE_LEN; in XXH3_update()
4862 XXH_ASSERT(input < bEnd); /* at least some bytes left */ in XXH3_update()
4865 …XXH_memcpy(state->buffer + sizeof(state->buffer) - XXH_STRIPE_LEN, input - XXH_STRIPE_LEN, XXH_STR… in XXH3_update()
4866 XXH_ASSERT(bEnd - input <= XXH_STRIPE_LEN); in XXH3_update()
4870 if (bEnd - input > XXH3_INTERNALBUFFER_SIZE) { in XXH3_update()
4875 input, XXH3_INTERNALBUFFER_STRIPES, in XXH3_update()
4878 input += XXH3_INTERNALBUFFER_SIZE; in XXH3_update()
4879 } while (input<limit); in XXH3_update()
4881 …XXH_memcpy(state->buffer + sizeof(state->buffer) - XXH_STRIPE_LEN, input - XXH_STRIPE_LEN, XXH_STR… in XXH3_update()
4886 XXH_ASSERT(input < bEnd); in XXH3_update()
4887 XXH_ASSERT(bEnd - input <= XXH3_INTERNALBUFFER_SIZE); in XXH3_update()
4889 XXH_memcpy(state->buffer, input, (size_t)(bEnd-input)); in XXH3_update()
4890 state->bufferedSize = (XXH32_hash_t)(bEnd-input); in XXH3_update()
4902 XXH3_64bits_update(XXH3_state_t* state, const void* input, size_t len) in XXH3_64bits_update() argument
4904 return XXH3_update(state, (const xxh_u8*)input, len, in XXH3_64bits_update()
4981 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
4984 XXH_ASSERT(input != NULL); in XXH3_len_1to3_128b()
4992 { xxh_u8 const c1 = input[0]; in XXH3_len_1to3_128b()
4993 xxh_u8 const c2 = input[len >> 1]; in XXH3_len_1to3_128b()
4994 xxh_u8 const c3 = input[len - 1]; in XXH3_len_1to3_128b()
5010 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
5012 XXH_ASSERT(input != NULL); in XXH3_len_4to8_128b()
5016 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_128b()
5017 xxh_u32 const input_hi = XXH_readLE32(input + len - 4); in XXH3_len_4to8_128b()
5037 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
5039 XXH_ASSERT(input != NULL); in XXH3_len_9to16_128b()
5044 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_len_9to16_128b()
5045 xxh_u64 input_hi = XXH_readLE64(input + len - 8); in XXH3_len_9to16_128b()
5112 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
5115 { if (len > 8) return XXH3_len_9to16_128b(input, len, secret, seed); in XXH3_len_0to16_128b()
5116 if (len >= 4) return XXH3_len_4to8_128b(input, len, secret, seed); in XXH3_len_0to16_128b()
5117 if (len) return XXH3_len_1to3_128b(input, len, secret, seed); in XXH3_len_0to16_128b()
5143 XXH3_len_17to128_128b(const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_len_17to128_128b() argument
5156 acc = XXH128_mix32B(acc, input+48, input+len-64, secret+96, seed); in XXH3_len_17to128_128b()
5158 acc = XXH128_mix32B(acc, input+32, input+len-48, secret+64, seed); in XXH3_len_17to128_128b()
5160 acc = XXH128_mix32B(acc, input+16, input+len-32, secret+32, seed); in XXH3_len_17to128_128b()
5162 acc = XXH128_mix32B(acc, input, input+len-16, secret, seed); in XXH3_len_17to128_128b()
5176 XXH3_len_129to240_128b(const xxh_u8* XXH_RESTRICT input, size_t len, in XXH3_len_129to240_128b() argument
5190 input + (32 * i), in XXH3_len_129to240_128b()
5191 input + (32 * i) + 16, in XXH3_len_129to240_128b()
5200 input + (32 * i), in XXH3_len_129to240_128b()
5201 input + (32 * i) + 16, in XXH3_len_129to240_128b()
5207 input + len - 16, in XXH3_len_129to240_128b()
5208 input + len - 32, in XXH3_len_129to240_128b()
5225 XXH3_hashLong_128b_internal(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_128b_internal() argument
5232 …XXH3_hashLong_internal_loop(acc, (const xxh_u8*)input, len, secret, secretSize, f_acc512, f_scramb… in XXH3_hashLong_128b_internal()
5253 XXH3_hashLong_128b_default(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_128b_default() argument
5258 return XXH3_hashLong_128b_internal(input, len, XXH3_kSecret, sizeof(XXH3_kSecret), in XXH3_hashLong_128b_default()
5267 XXH3_hashLong_128b_withSecret(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_128b_withSecret() argument
5272 return XXH3_hashLong_128b_internal(input, len, (const xxh_u8*)secret, secretLen, in XXH3_hashLong_128b_withSecret()
5277 XXH3_hashLong_128b_withSeed_internal(const void* XXH_RESTRICT input, size_t len, in XXH3_hashLong_128b_withSeed_internal() argument
5284 return XXH3_hashLong_128b_internal(input, len, in XXH3_hashLong_128b_withSeed_internal()
5289 return XXH3_hashLong_128b_internal(input, len, (const xxh_u8*)secret, sizeof(secret), in XXH3_hashLong_128b_withSeed_internal()
5298 XXH3_hashLong_128b_withSeed(const void* input, size_t len, in XXH3_hashLong_128b_withSeed() argument
5302 return XXH3_hashLong_128b_withSeed_internal(input, len, seed64, in XXH3_hashLong_128b_withSeed()
5310 XXH3_128bits_internal(const void* input, size_t len, 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()
5334 XXH_PUBLIC_API XXH128_hash_t XXH3_128bits(const void* input, size_t len) in XXH3_128bits() argument
5336 return XXH3_128bits_internal(input, len, 0, in XXH3_128bits()
5343 XXH3_128bits_withSecret(const void* input, size_t len, const void* secret, size_t secretSize) in XXH3_128bits_withSecret() argument
5345 return XXH3_128bits_internal(input, len, 0, in XXH3_128bits_withSecret()
5352 XXH3_128bits_withSeed(const void* input, size_t len, XXH64_hash_t seed) in XXH3_128bits_withSeed() argument
5354 return XXH3_128bits_internal(input, len, seed, in XXH3_128bits_withSeed()
5361 XXH3_128bits_withSecretandSeed(const void* input, size_t len, const void* secret, size_t secretSize… in XXH3_128bits_withSecretandSeed() argument
5364 return XXH3_128bits_internal(input, len, seed, XXH3_kSecret, sizeof(XXH3_kSecret), NULL); in XXH3_128bits_withSecretandSeed()
5365 return XXH3_hashLong_128b_withSecret(input, len, seed, secret, secretSize); in XXH3_128bits_withSecretandSeed()
5370 XXH128(const void* input, size_t len, XXH64_hash_t seed) in XXH128() argument
5372 return XXH3_128bits_withSeed(input, len, seed); in XXH128()
5413 XXH3_128bits_update(XXH3_state_t* state, const void* input, size_t len) in XXH3_128bits_update() argument
5415 return XXH3_update(state, (const xxh_u8*)input, len, in XXH3_128bits_update()