Inline xxHash3

This commit is contained in:
Oleksandr Melnyk 2022-06-13 09:43:40 +03:00
parent 7b8c7d15be
commit fd21646c83
2 changed files with 1422 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -90,7 +90,9 @@ namespace Standart.Hash.xxHash
fixed (byte* secret = &XXH3_SECRET[0]) fixed (byte* secret = &XXH3_SECRET[0])
{ {
// Use inlined version // Use inlined version
return XXH3_64bits_internal(input, len, seed, secret, XXH3_SECRET_DEFAULT_SIZE); // return XXH3_64bits_internal(input, len, seed, secret, XXH3_SECRET_DEFAULT_SIZE);
return __inline__XXH3_64bits_internal(input, len, seed, secret, XXH3_SECRET_DEFAULT_SIZE);
} }
} }
} }