]> Dogcows Code - chaz/yoink/blob - src/Moof/Hash.cc
initial working frustum culling implementation
[chaz/yoink] / src / Moof / Hash.cc
1
2 /*******************************************************************************
3
4 Copyright (c) 2009, Charles McGarvey
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9
10 * Redistributions of source code must retain the above copyright notice,
11 this list of conditions and the following disclaimer.
12 * Redistributions in binary form must reproduce the above copyright notice,
13 this list of conditions and the following disclaimer in the documentation
14 and/or other materials provided with the distribution.
15
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
27 *******************************************************************************/
28
29 #include "Hash.hh"
30
31
32 namespace Mf {
33
34
35 //-----------------------------------------------------------------------------
36 // MurmurHash2, by Austin Appleby
37
38 // Note - This code makes a few assumptions about how your machine behaves -
39
40 // 1. We can read a 4-byte value from any address without crashing
41 // 2. sizeof(int) == 4
42
43 // And it has a few limitations -
44
45 // 1. It will not work incrementally.
46 // 2. It will not produce the same results on little-endian and big-endian
47 // machines.
48
49 unsigned int MurmurHash2_(const void* key, int len, unsigned int seed)
50 {
51 // 'm' and 'r' are mixing constants generated offline.
52 // They're not really 'magic', they just happen to work well.
53
54 const unsigned int m = 0x5bd1e995;
55 const int r = 24;
56
57 // Initialize the hash to a 'random' value
58
59 unsigned int h = seed ^ len;
60
61 // Mix 4 bytes at a time into the hash
62
63 const unsigned char* data = (const unsigned char*)key;
64
65 while (len >= 4)
66 {
67 unsigned int k = *(unsigned int*)data;
68
69 k *= m;
70 k ^= k >> r;
71 k *= m;
72
73 h *= m;
74 h ^= k;
75
76 data += 4;
77 len -= 4;
78 }
79
80 // Handle the last few bytes of the input array
81
82 switch (len)
83 {
84 case 3: h ^= data[2] << 16;
85 case 2: h ^= data[1] << 8;
86 case 1: h ^= data[0];
87 h *= m;
88 };
89
90 // Do a few final mixes of the hash to ensure the last few
91 // bytes are well-incorporated.
92
93 h ^= h >> 13;
94 h *= m;
95 h ^= h >> 15;
96
97 return h;
98 }
99
100
101 } // namespace Mf
102
103 /** vim: set ts=4 sw=4 tw=80: *************************************************/
104
This page took 0.033934 seconds and 4 git commands to generate.