forked from explosion/spaCy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add header files to repo, to prevent cross-compilation problems
- Loading branch information
Showing
28 changed files
with
10,615 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
//----------------------------------------------------------------------------- | ||
// MurmurHash2 was written by Austin Appleby, and is placed in the public | ||
// domain. The author hereby disclaims copyright to this source code. | ||
|
||
#ifndef _MURMURHASH2_H_ | ||
#define _MURMURHASH2_H_ | ||
|
||
#include <stdint.h> | ||
|
||
//----------------------------------------------------------------------------- | ||
|
||
uint32_t MurmurHash2 ( const void * key, int len, uint32_t seed ); | ||
uint64_t MurmurHash64A ( const void * key, int len, uint64_t seed ); | ||
uint64_t MurmurHash64B ( const void * key, int len, uint64_t seed ); | ||
uint32_t MurmurHash2A ( const void * key, int len, uint32_t seed ); | ||
uint32_t MurmurHashNeutral2 ( const void * key, int len, uint32_t seed ); | ||
uint32_t MurmurHashAligned2 ( const void * key, int len, uint32_t seed ); | ||
|
||
//----------------------------------------------------------------------------- | ||
|
||
#endif // _MURMURHASH2_H_ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
//----------------------------------------------------------------------------- | ||
// MurmurHash3 was written by Austin Appleby, and is placed in the public | ||
// domain. The author hereby disclaims copyright to this source code. | ||
|
||
#ifndef _MURMURHASH3_H_ | ||
#define _MURMURHASH3_H_ | ||
|
||
#include <stdint.h> | ||
|
||
//----------------------------------------------------------------------------- | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
|
||
void MurmurHash3_x86_32 ( const void * key, int len, uint32_t seed, void * out ); | ||
|
||
void MurmurHash3_x86_128 ( const void * key, int len, uint32_t seed, void * out ); | ||
|
||
void MurmurHash3_x64_128 ( const void * key, int len, uint32_t seed, void * out ); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
//----------------------------------------------------------------------------- | ||
|
||
#endif // _MURMURHASH3_H_ |
Oops, something went wrong.