wyhash.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Copyright 2020 The Abseil Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // https://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. //
  15. // This file provides the Google-internal implementation of the Wyhash
  16. // algorithm.
  17. //
  18. // Wyhash is a fast hash function for hash tables, the fastest we've currently
  19. // (late 2020) found that passes the SMHasher tests. The algorithm relies on
  20. // intrinsic 128-bit multiplication for speed. This is not meant to be secure -
  21. // just fast.
  22. #ifndef ABSL_HASH_INTERNAL_WYHASH_H_
  23. #define ABSL_HASH_INTERNAL_WYHASH_H_
  24. #include <stdint.h>
  25. #include <stdlib.h>
  26. #include "absl/base/config.h"
  27. namespace absl {
  28. ABSL_NAMESPACE_BEGIN
  29. namespace hash_internal {
  30. // Hash function for a byte array. A 64-bit seed and a set of five 64-bit
  31. // integers are hashed into the result.
  32. //
  33. // To allow all hashable types (including string_view and Span) to depend on
  34. // this algoritm, we keep the API low-level, with as few dependencies as
  35. // possible.
  36. uint64_t Wyhash(const void* data, size_t len, uint64_t seed,
  37. const uint64_t salt[5]);
  38. } // namespace hash_internal
  39. ABSL_NAMESPACE_END
  40. } // namespace absl
  41. #endif // ABSL_HASH_INTERNAL_WYHASH_H_