hash-string.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* Implements a string hashing function.
  2. Copyright (C) 1995, 1997, 1998, 2000, 2003 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, write to the Free
  14. Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  15. Boston, MA 02110-1301, USA. */
  16. #ifdef HAVE_CONFIG_H
  17. # include <config.h>
  18. #endif
  19. /* Specification. */
  20. #include "hash-string.h"
  21. /* Defines the so called `hashpjw' function by P.J. Weinberger
  22. [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools,
  23. 1986, 1987 Bell Telephone Laboratories, Inc.] */
  24. unsigned long int
  25. __hash_string (const char *str_param)
  26. {
  27. unsigned long int hval, g;
  28. const char *str = str_param;
  29. /* Compute the hash value for the given string. */
  30. hval = 0;
  31. while (*str != '\0')
  32. {
  33. hval <<= 4;
  34. hval += (unsigned char) *str++;
  35. g = hval & ((unsigned long int) 0xf << (HASHWORDBITS - 4));
  36. if (g != 0)
  37. {
  38. hval ^= g >> (HASHWORDBITS - 8);
  39. hval ^= g;
  40. }
  41. }
  42. return hval;
  43. }