DRM from FreeBSD current, tested for r600
[dragonfly.git] / sys / dev / drm / drm_priv_hash.h
blobbc4e874f17bac8065bdff7921c2c246ab03add6c
1 /*-
2 * Copyright (c) 2001 Tobias Weingartner
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 * $OpenBSD: hash.h,v 1.4 2004/05/25 18:37:23 jmc Exp $
26 * $FreeBSD: src/sys/sys/hash.h,v 1.3 2007/04/09 22:55:14 thompsa Exp $
29 #ifndef _DRM_PRIV_HASH_H
30 #define _DRM_PRIV_HASH_H_
31 #include <sys/types.h>
33 /* Convenience */
34 #ifndef HASHINIT
35 #define HASHINIT 5381
36 #define HASHSTEP(x,c) (((x << 5) + x) + (c))
37 #endif
40 * Return a 32-bit hash of the given buffer. The init
41 * value should be 0, or the previous hash value to extend
42 * the previous hash.
44 static __inline uint32_t
45 hash32_buf(const void *buf, size_t len, uint32_t hash)
47 const unsigned char *p = buf;
49 while (len--)
50 hash = HASHSTEP(hash, *p++);
52 return hash;
56 * Return a 32-bit hash of the given string.
58 static __inline uint32_t
59 hash32_str(const void *buf, uint32_t hash)
61 const unsigned char *p = buf;
63 while (*p)
64 hash = HASHSTEP(hash, *p++);
66 return hash;
70 * Return a 32-bit hash of the given string, limited by N.
72 static __inline uint32_t
73 hash32_strn(const void *buf, size_t len, uint32_t hash)
75 const unsigned char *p = buf;
77 while (*p && len--)
78 hash = HASHSTEP(hash, *p++);
80 return hash;
84 * Return a 32-bit hash of the given string terminated by C,
85 * (as well as 0). This is mainly here as a helper for the
86 * namei() hashing of path name parts.
88 static __inline uint32_t
89 hash32_stre(const void *buf, int end, const char **ep, uint32_t hash)
91 const unsigned char *p = buf;
93 while (*p && (*p != end))
94 hash = HASHSTEP(hash, *p++);
96 if (ep)
97 *ep = p;
99 return hash;
103 * Return a 32-bit hash of the given string, limited by N,
104 * and terminated by C (as well as 0). This is mainly here
105 * as a helper for the namei() hashing of path name parts.
107 static __inline uint32_t
108 hash32_strne(const void *buf, size_t len, int end, const char **ep,
109 uint32_t hash)
111 const unsigned char *p = buf;
113 while (*p && (*p != end) && len--)
114 hash = HASHSTEP(hash, *p++);
116 if (ep)
117 *ep = p;
119 return hash;
122 /* Added to act as private header files for hash function */
124 void *
125 drm_hashinit(int elements, struct malloc_type *type, u_long *hashmask);
127 void
128 drm_hashdestroy(void *vhashtbl, struct malloc_type *type, u_long hashmask);
130 #endif /* !_DRM_PRIV_HASH_H_ */