- 0ff96f7 add hancho build by Austin Appleby · 11 months ago master
- 61a0530 Update README.md by aappleby · 10 years ago
- bede800 Update README.md by aappleby · 10 years ago
- 3ff2da6 Update README.md by aappleby · 10 years ago
- 92cf370 move all code into 'src' subdirectory by Austin Appleby · 10 years ago
- f1a0350 Update README.md by aappleby · 10 years ago
- b023f3c Create README.md by aappleby · 10 years ago
- 3e1f0d1 Patch City.h to fix compile errors in Chromium (see issue 27) by aappleby@google.com · 12 years ago
- 4dc4abe Merge patch to fix build under VS2010 by aappleby@google.com · 12 years ago
- 73e075b Merge patch from benswick@ to make Murmur3 compile as plain C code. by aappleby@google.com · 12 years ago
- 24b0ace Add required 'inline' keyword to FORCE_INLINE macros. by tanjent@gmail.com · 12 years ago
- a5195eb City.cpp/h was using the _mm_crc32_u64 intrinsic, which is only supported on x64 platforms - see https://bugs.gentoo.org/show_bug.cgi?id=459126 for details. by tanjent@gmail.com · 13 years ago
- 53391d6 Minor fixes & tweaks. by tanjent@gmail.com · 13 years ago
- 5b2536f Merge in PMurHash by Shane Day, a MurmurHash3_x86_32 implementation that should work on virtually all platforms regardless of endian-ness or alignment issues. by tanjent@gmail.com · 13 years ago
- 55a55e3 Add #include "Platform.h" to fix Windows build by tanjent@gmail.com · 14 years ago
- 3dc2b2c Merge branch chandlerc_dev by tanjent@gmail.com · 14 years ago
- a6bd3ce Fix typo in rotation constant for Murmur3_x86_32's tail, update verification value. by tanjent@gmail.com · 14 years ago
- 373ab1b more size_t warnings by tanjent@gmail.com · 15 years ago
- 434f410 and fix corresponding build breakages under Windows by tanjent@gmail.com · 15 years ago
- 319a5a8 Enable all gcc warnings except strict aliasing, fix build issues by aappleby@google.com · 15 years ago
- 3dda7c5 Add Google's open-source CityHash Fix build breakage on Cygwin by tanjent@gmail.com · 15 years ago
- 5aafad4 Make verification failure print the hash names by tanjent@gmail.com · 15 years ago
- c27bafe Fix typos by aappleby@google.com · 15 years ago
- 6b71e09 Remove dead files, make Murmur1/2/3 all have explicit public domain licensing & no external dependencies by aappleby@google.com · 15 years ago
- 86b1368 Build fixes for clang, etc by aappleby@google.com · 15 years ago
- adc5c8e gcc complains about multiply defined symbols, move rotl macros back to source file by aappleby@google.com · 15 years ago
- c8577ae Remove platform.h dependency from MurmurHash3.h, move platform #ifdefs to header by tanjent@gmail.com · 15 years ago
- bba0c38 make murmurhash3 compile standalone on Visual Studio by tanjent@gmail.com · 15 years ago
- a39ef38 Make MurmurHash3.cpp compile standalone on GCC by aappleby@google.com · 15 years ago
- ab1138d Add CPU affinity to gcc build by aappleby@google.com · 15 years ago
- e17a101 fix cpu affinity mask by tanjent@gmail.com · 15 years ago
- 8a3ee61 and of course gcc complains about missing "typename" specifier and missing typecasts by aappleby@google.com · 15 years ago
- d7de805 some test code for collision reporting by tanjent@gmail.com · 15 years ago
- 9f2f272 Add improved timing code that attempts to filter out spurious timing results by aappleby@google.com · 15 years ago
- 98f7c9c Add #include <stdio.h> to Types.cpp by aappleby@google.com · 15 years ago
- daec299 Final final final Murmur3, all variants. I am tired of working on it. :) by tanjent@gmail.com · 15 years ago
- 41cc712 faster bmix64, 7.5 gigs/sec, passes all tests by tanjent@gmail.com · 15 years ago
- f35a44c Fix self-test values Remove reference to experiments.cpp by tanjent@gmail.com · 15 years ago
- 08cb25c simpler block mix for murmur3c by tanjent@gmail.com · 15 years ago
- cae9a4e Add missing <memory.h> to fix gcc builds by tanjent@gmail.com · 15 years ago
- 46c11ce Tweak to Murmur3a (yeah, even though I said it was finalized...) by tanjent@gmail.com · 15 years ago
- 1f4f049 Add TwoBytes test (not on by default) by tanjent@gmail.com · 15 years ago
- 4e87180 Add faster BICTest variants by tanjent@gmail.com · 15 years ago
- 319080a verification code work by aappleby@google.com · 15 years ago
- e4bfa41 Start work on verification codes by tanjent@gmail.com · 15 years ago
- 8a4622a Remove stub file by tanjent@gmail.com · 15 years ago
- c98b1f2 And add stdio.h so SuperFastHash has a reference to NULL by tanjent@gmail.com · 15 years ago
- 6a7ee55 Remove leftover references to pstdint.h that break Ubuntu build by tanjent@gmail.com · 15 years ago
- 4aedef2 Fix rdtsc errors from core hopping causing bad timing results by tanjent@gmail.com · 15 years ago
- 9b126ff Add startup self-test by tanjent@gmail.com · 15 years ago
- 5935d85 Fix x86_64 gcc 4.4.1 build errors: by McKay.Davis@gmail.com · 15 years ago
- b743f58 Initial commit of CMake file. Builds SMHasherSupport lib and SMHasher executable. by McKay.Davis@gmail.com · 15 years ago
- e11fe4b Cross-platform compliation fixes. Everything should compile under GCC now, but no guarantees that it runs correctly yet... by tanjent@gmail.com · 15 years ago
- 40b7867 Add beginnings of bitslice test by tanjent@gmail.com · 15 years ago
- fda2156 Remove a few bits of commented-out code. by tanjent@gmail.com · 15 years ago
- 74ede59 test murmur3a by default by tanjent@gmail.com · 15 years ago
- a3eb6ac Tweak Murmur3, new more rigorous sanity test, combinatorial block test by tanjent@gmail.com · 15 years ago
- 3e27a38 remove swap() and use std::swap instead, make alignment test a bit more robust by tanjent@gmail.com · 15 years ago
- 27985f5 MurmurHash3_x86_128 was missing a rotate instruction by tanjent@gmail.com · 15 years ago
- 4396664 MurmurHash3 is released to beta by tanjent@gmail.com · 15 years ago
- f971d66 Remove code that's not part of this library by tanjent@gmail.com · 15 years ago
- d88ec17 Add project files by tanjent@gmail.com · 15 years ago
- 3354365 Initial source checkin by tanjent@gmail.com · 15 years ago