groff: update vendor branch to v1.20.1
[dragonfly.git] / contrib / groff / src / libs / libgroff / ptable.cpp
1 /* Copyright (C) 1989, 1990, 1991, 1992, 2006, 2009
2      Free Software Foundation, Inc.
3      Written by James Clark (jjc@jclark.com)
4
5 This file is part of groff.
6
7 groff is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 groff is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include "ptable.h"
21 #include "errarg.h"
22 #include "error.h"
23
24 unsigned long hash_string(const char *s)
25 {
26   // This is the mythical Aho-Hopcroft-Ullman hash function.
27   // TODO: Improve.  See http://www.haible.de/bruno/hashfunc.html
28   assert(s != 0);
29   unsigned long h = 0, g;
30   while (*s != 0) {
31     h <<= 4;
32     h += *s++;
33     if ((g = h & 0xf0000000) != 0) {
34       h ^= g >> 24;
35       h ^= g;
36     }
37   }
38   return h;
39 }
40
41 static const unsigned table_sizes[] = { 
42   101, 503, 1009, 2003, 3001, 4001, 5003, 10007, 20011, 40009,
43   80021, 160001, 500009, 1000003, 2000003, 4000037, 8000009,
44   16000057, 32000011, 64000031, 128000003, 0 
45 };
46
47 unsigned next_ptable_size(unsigned n)
48 {
49   const unsigned *p;  
50   for (p = table_sizes; *p <= n; p++)
51     if (*p == 0)
52       fatal("cannot expand table");
53   return *p;
54 }
55
56 // end of ptable.cpp