1 /* $NetBSD: hash_func.c,v 1.13 2008/09/10 17:52:35 joerg Exp $ */
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #if HAVE_NBTOOL_CONFIG_H
36 #include "nbtool_config.h"
39 #include <sys/cdefs.h>
40 __RCSID("$NetBSD: hash_func.c,v 1.13 2008/09/10 17:52:35 joerg Exp $");
42 #include <sys/types.h>
50 static uint32_t hash1(const void *, size_t) __attribute__((__unused__
));
51 static uint32_t hash2(const void *, size_t) __attribute__((__unused__
));
52 static uint32_t hash3(const void *, size_t) __attribute__((__unused__
));
54 static uint32_t hash4(const void *, size_t) __attribute__((__unused__
));
56 /* Global default hash function */
57 uint32_t (*__default_hash
)(const void *, size_t) = hash4
;
62 * Assume that we've already split the bucket to which this key hashes,
63 * calculate that bucket, and check that in fact we did already split it.
65 * This came from ejb's hsearch.
69 #define PRIME2 1048583
72 hash1(const void *keyarg
, size_t len
)
77 /* Convert string to integer */
78 for (key
= keyarg
, h
= 0; len
--;)
79 h
= h
* PRIME1
^ (*key
++ - ' ');
85 * Phong's linear congruential hash
87 #define dcharhash(h, c) ((h) = 0x63c63cd9*(h) + 0x9c39c33d + (c))
90 hash2(const void *keyarg
, size_t len
)
92 const uint8_t *e
, *key
;
98 for (h
= 0; key
!= e
;) {
108 * This is INCREDIBLY ugly, but fast. We break the string up into 8 byte
109 * units. On the first time through the loop we get the "leftover bytes"
110 * (strlen % 8). On every other iteration, we perform 8 HASHC's so we handle
111 * all 8 bytes. Essentially, this saves us 7 cmp & branch instructions. If
112 * this routine is heavily used enough, it's worth the ugly coding.
114 * OZ's original sdbm hash
117 hash3(const void *keyarg
, size_t len
)
123 #define HASHC h = *key++ + 65599 * h
128 loop
= (len
+ 8 - 1) >> 3;
130 switch (len
& (8 - 1)) {
162 /* Hash function from Chris Torek. */
164 hash4(const void *keyarg
, size_t len
)
170 #define HASH4a h = (h << 5) - h + *key++;
171 #define HASH4b h = (h << 5) + h + *key++;
177 loop
= (len
+ 8 - 1) >> 3;
179 switch (len
& (8 - 1)) {