hash-string.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* Implements a string hashing function.
  2. Copyright (C) 1995-2026 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <https://www.gnu.org/licenses/>. */
  15. #ifdef HAVE_CONFIG_H
  16. # include <config.h>
  17. #endif
  18. /* Specification. */
  19. #include "hash-string.h"
  20. /* Defines the so called `hashpjw' function by P.J. Weinberger
  21. [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools,
  22. 1986, 1987 Bell Telephone Laboratories, Inc.] */
  23. unsigned long int
  24. __hash_string (const char *str_param)
  25. {
  26. unsigned long int hval, g;
  27. const char *str = str_param;
  28. /* Compute the hash value for the given string. */
  29. hval = 0;
  30. while (*str != '\0')
  31. {
  32. hval <<= 4;
  33. hval += (unsigned char) *str++;
  34. g = hval & ((unsigned long int) 0xf << (HASHWORDBITS - 4));
  35. if (g != 0)
  36. {
  37. hval ^= g >> (HASHWORDBITS - 8);
  38. hval ^= g;
  39. }
  40. }
  41. return hval;
  42. }