The Pedigree Project  0.1
MurmurHash3.h
1 /*
2  * Copyright (c) 2008-2014, Pedigree Developers
3  *
4  * Please see the CONTRIB file in the root of the source tree for a full
5  * list of contributors.
6  *
7  * Permission to use, copy, modify, and distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 //-----------------------------------------------------------------------------
21 // MurmurHash3 was written by Austin Appleby, and is placed in the public
22 // domain. The author hereby disclaims copyright to this source code.
23 
24 #ifndef _MURMURHASH3_H_
25 #define _MURMURHASH3_H_
26 
27 //-----------------------------------------------------------------------------
28 // Platform-specific functions and macros
29 
30 // Microsoft Visual Studio
31 
32 #if defined(_MSC_VER) && (_MSC_VER < 1600)
33 
34 typedef unsigned char uint8_t;
35 typedef unsigned int uint32_t;
36 typedef unsigned __int64 uint64_t;
37 
38 // Other compilers
39 
40 #else // defined(_MSC_VER)
41 
42 #include <stdint.h>
43 
44 #endif // !defined(_MSC_VER)
45 
46 //-----------------------------------------------------------------------------
47 
48 void MurmurHash3_x86_32(const void *key, int len, uint32_t seed, void *out);
49 
50 void MurmurHash3_x86_128(const void *key, int len, uint32_t seed, void *out);
51 
52 void MurmurHash3_x64_128(const void *key, int len, uint32_t seed, void *out);
53 
54 //-----------------------------------------------------------------------------
55 
56 #endif // _MURMURHASH3_H_