00001 //-----------------------------------------------------------------------------00002 // MurmurHash3 was written by Austin Appleby, and is placed in the public00003 // domain. The author hereby disclaims copyright to this source code.00004
00005 // Adaptations for Visualization Library by Michele Bosi00006
00007 // Homepage: http://code.google.com/p/smhasher/w/list00008
00009 #ifndef _MURMURHASH3_H_00010 #define _MURMURHASH3_H_00011
00012 #include <vlCore/std_types.hpp>00013
00014 namespace vl
00015 {
00016 VLCORE_EXPORTvoidMurmurHash3_x86_32 ( constvoid * key, int len, u32 seed, void * out );
00017
00018 VLCORE_EXPORTvoidMurmurHash3_x86_128 ( constvoid * key, int len, u32 seed, void * out );
00019
00020 VLCORE_EXPORTvoidMurmurHash3_x64_128 ( constvoid * key, int len, u32 seed, void * out );
00021 }
00022
00023 #endif // _MURMURHASH3_H_
Visualization Library v1.0.3 Reference Documentation
Copyright Michele Bosi. All rights reserved.
Updated on Tue Feb 7 2017 00:55:02.
Permission is granted to use this page to write and publish articles regarding Visualization Library.