3rdparty: Update xxHash to v0.8.3 (#12137)

This commit is contained in:
Jordan 2024-12-31 23:14:47 +00:00 committed by GitHub
parent 18308b6525
commit 575ec07553
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2147 additions and 886 deletions

File diff suppressed because it is too large Load Diff

View File

@ -22,7 +22,7 @@ MULTI_ISA_UNSHARED_IMPL;
u64 __noinline CURRENT_ISA::GSXXH3_64_Long(const void* data, size_t len)
{
// XXH marks its function that calls this noinline, and it would be silly to stack noinline functions, so call the internal function directly
return XXH3_hashLong_64b_internal(data, len, XXH3_kSecret, sizeof(XXH3_kSecret), XXH3_accumulate_512, XXH3_scrambleAcc);
return XXH3_hashLong_64b_internal(data, len, XXH3_kSecret, sizeof(XXH3_kSecret), XXH3_accumulate, XXH3_scrambleAcc);
}
u32 CURRENT_ISA::GSXXH3_64_Update(void* state, const void* data, size_t len)