source: rtems-libbsd/freebsd/sys/sys/fnv_hash.h

6-freebsd-12
Last change on this file was c40e45b, checked in by Sebastian Huber <sebastian.huber@…>, on 10/07/16 at 13:10:20

Update to FreeBSD head 2016-08-23

Git mirror commit 9fe7c416e6abb28b1398fd3e5687099846800cfd.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*-
2 * Fowler / Noll / Vo Hash (FNV Hash)
3 * http://www.isthe.com/chongo/tech/comp/fnv/
4 *
5 * This is an implementation of the algorithms posted above.
6 * This file is placed in the public domain by Peter Wemm.
7 *
8 * $FreeBSD$
9 */
10#ifndef _SYS_FNV_HASH_H_
11#define _SYS_FNV_HASH_H_
12
13typedef u_int32_t Fnv32_t;
14typedef u_int64_t Fnv64_t;
15
16#define FNV1_32_INIT ((Fnv32_t) 33554467UL)
17#define FNV1_64_INIT ((Fnv64_t) 0xcbf29ce484222325ULL)
18
19#define FNV_32_PRIME ((Fnv32_t) 0x01000193UL)
20#define FNV_64_PRIME ((Fnv64_t) 0x100000001b3ULL)
21
22static __inline Fnv32_t
23fnv_32_buf(const void *buf, size_t len, Fnv32_t hval)
24{
25        const u_int8_t *s = (const u_int8_t *)buf;
26
27        while (len-- != 0) {
28                hval *= FNV_32_PRIME;
29                hval ^= *s++;
30        }
31        return hval;
32}
33
34static __inline Fnv32_t
35fnv_32_str(const char *str, Fnv32_t hval)
36{
37        const u_int8_t *s = (const u_int8_t *)str;
38        Fnv32_t c;
39
40        while ((c = *s++) != 0) {
41                hval *= FNV_32_PRIME;
42                hval ^= c;
43        }
44        return hval;
45}
46
47#ifndef __rtems__
48static __inline Fnv64_t
49fnv_64_buf(const void *buf, size_t len, Fnv64_t hval)
50{
51        const u_int8_t *s = (const u_int8_t *)buf;
52
53        while (len-- != 0) {
54                hval *= FNV_64_PRIME;
55                hval ^= *s++;
56        }
57        return hval;
58}
59
60static __inline Fnv64_t
61fnv_64_str(const char *str, Fnv64_t hval)
62{
63        const u_int8_t *s = (const u_int8_t *)str;
64        u_register_t c;          /* 32 bit on i386, 64 bit on alpha */
65
66        while ((c = *s++) != 0) {
67                hval *= FNV_64_PRIME;
68                hval ^= c;
69        }
70        return hval;
71}
72#endif /* __rtems__ */
73#endif /* _SYS_FNV_HASH_H_ */
Note: See TracBrowser for help on using the repository browser.