some features

in main.cpp fastest Variant implementation
This commit is contained in:
2020-08-05 00:53:27 +03:00
parent 9cd108cf20
commit 70a7363f76
5 changed files with 262 additions and 97 deletions

View File

@@ -467,7 +467,7 @@ uint letobe_i(uint v) {return (v >> 24) | ((v >> 8) & 0xFF00) | ((v << 8) & 0xFF
#endif
/// \brief Generic hash function, impements murmur3/32 algorithm
/// \brief Generic hash function, implements murmur3/32 algorithm
inline uint piHashData(const uchar * data, uint len, uint seed = 0) {
if (!data || len <= 0) return 0u;
uint h = seed;