1 /* Copyright (c) 2010 Wildfire Games
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 * Fowler/Noll/Vo string hash
27 #include "precompiled.h"
30 // FNV1-A hash - good for strings.
31 // if len = 0 (default), treat buf as a C-string;
32 // otherwise, hash <len> bytes of buf.
33 u32
fnv_hash(const void* buf
, size_t len
)
36 // give distinct values for different length 0 buffers.
37 // value taken from FNV; it has no special significance.
39 const u8
* p
= (const u8
*)buf
;
41 // expected case: string
52 size_t bytes_left
= len
;
53 while(bytes_left
!= 0)
66 // FNV1-A hash - good for strings.
67 // if len = 0 (default), treat buf as a C-string;
68 // otherwise, hash <len> bytes of buf.
69 u64
fnv_hash64(const void* buf
, size_t len
)
71 u64 h
= 0xCBF29CE484222325ull
;
72 // give distinct values for different length 0 buffers.
73 // value taken from FNV; it has no special significance.
75 const u8
* p
= (const u8
*)buf
;
77 // expected case: string
83 h
*= 0x100000001B3ull
;
88 size_t bytes_left
= len
;
89 while(bytes_left
!= 0)
92 h
*= 0x100000001B3ull
;
102 // special version for strings: first converts to lowercase
103 // (useful for comparing mixed-case filenames).
104 // note: still need <len>, e.g. to support non-0-terminated strings
105 u32
fnv_lc_hash(const char* str
, size_t len
)
108 // give distinct values for different length 0 buffers.
109 // value taken from FNV; it has no special significance.
111 // expected case: string
116 h
^= tolower(*str
++);
122 size_t bytes_left
= len
;
123 while(bytes_left
!= 0)
125 h
^= tolower(*str
++);