PATH:
usr
/
share
/
gettext
/
intl
/* Implements a string hashing function. Copyright (C) 1995-2016 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ #ifdef HAVE_CONFIG_H # include <config.h> #endif /* Specification. */ #include "hash-string.h" /* Defines the so called `hashpjw' function by P.J. Weinberger [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools, 1986, 1987 Bell Telephone Laboratories, Inc.] */ unsigned long int __hash_string (const char *str_param) { unsigned long int hval, g; const char *str = str_param; /* Compute the hash value for the given string. */ hval = 0; while (*str != '\0') { hval <<= 4; hval += (unsigned char) *str++; g = hval & ((unsigned long int) 0xf << (HASHWORDBITS - 4)); if (g != 0) { hval ^= g >> (HASHWORDBITS - 8); hval ^= g; } } return hval; }
[-] plural-exp.h
[edit]
[-] printf-args.h
[edit]
[-] l10nflist.c
[edit]
[-] dcngettext.c
[edit]
[-] lock.h
[edit]
[-] gettextP.h
[edit]
[-] gmo.h
[edit]
[-] tsearch.c
[edit]
[-] COPYING.LIB
[edit]
[-] os2compat.h
[edit]
[-] lock.c
[edit]
[-] finddomain.c
[edit]
[-] hash-string.h
[edit]
[-] eval-plural.h
[edit]
[+]
..
[-] explodename.c
[edit]
[-] gettext.c
[edit]
[-] langprefs.c
[edit]
[-] plural.y
[edit]
[-] export.h
[edit]
[-] version.c
[edit]
[-] xsize.h
[edit]
[-] ngettext.c
[edit]
[-] printf-parse.c
[edit]
[-] setlocale.c
[edit]
[-] vasnprintf.c
[edit]
[-] bindtextdom.c
[edit]
[-] dcgettext.c
[edit]
[-] dngettext.c
[edit]
[-] textdomain.c
[edit]
[-] relocatable.h
[edit]
[-] localealias.c
[edit]
[-] hash-string.c
[edit]
[-] threadlib.c
[edit]
[-] intl-compat.c
[edit]
[-] dgettext.c
[edit]
[-] config.charset
[edit]
[-] vasnwprintf.h
[edit]
[-] locale.alias
[edit]
[-] dcigettext.c
[edit]
[-] wprintf-parse.h
[edit]
[-] intl-exports.c
[edit]
[-] vasnprintf.h
[edit]
[-] os2compat.c
[edit]
[-] xsize.c
[edit]
[-] VERSION
[edit]
[-] printf-parse.h
[edit]
[-] localcharset.h
[edit]
[-] Makefile.in
[edit]
[-] loadmsgcat.c
[edit]
[-] printf.c
[edit]
[-] log.c
[edit]
[-] ref-add.sin
[edit]
[-] loadinfo.h
[edit]
[-] libintl.rc
[edit]
[-] relocatable.c
[edit]
[-] ref-del.sin
[edit]
[-] plural-exp.c
[edit]
[-] plural.c
[edit]
[-] printf-args.c
[edit]
[-] libgnuintl.in.h
[edit]
[-] localcharset.c
[edit]
[-] verify.h
[edit]
[-] localename.c
[edit]
[-] tsearch.h
[edit]
[-] osdep.c
[edit]