Google Code Exporter

Results 11117 issues of Google Code Exporter

``` The murmurhash code is open-source, but lacking a proper license. "Public domain is not a license", as they say. ``` Original issue reported on code.google.com by `[email protected]` on 14...

Type-Defect
Priority-Medium
auto-migrated

``` string "str_hash_mmh" should give mmh3_128 value EBC36FB5EAEF57B81E12217B6E10C8B1 (x64 Linux/Solaris/Windows/etc) while for big-endian machines it gives B857EFEAB56FC3EBB1C8106E7B21121E (SPARC Solaris) ``` Original issue reported on code.google.com by `alexandr.ustinov` on 5 Dec...

Type-Defect
Priority-Medium
auto-migrated

``` Perhaps a bug in my code. I'm not able to create a sanity test that will generate the SHA1 result from the SHA1 in SMHasher using the sha1 implemented...

Type-Defect
Priority-Medium
auto-migrated

``` What steps will reproduce the problem? 1. Supply a negative seed value when constructing an instance of MurmurHash3 2. Compute a hash 3. Get a different hash value than...

Type-Defect
Priority-Medium
auto-migrated

``` On Solaris, with native cc, _BIG_ENDIAN or _LITTLE_ENDIAN is #define'd, but just #define'd; there is no numeric value. This causes tests like (_BIG_ENDIAN==1) (PMurHash.c:96) to fail with a "missing...

Type-Defect
Priority-Medium
auto-migrated

``` Adds: * One-At-A-Time * Lookup2 * Python's hash function Also renames FNV to FNV-1a because the implemented FNV hash is the 1a variant. Adds FNV-1 so it can be...

Type-Defect
Priority-Medium
auto-migrated

``` What steps will reproduce the problem? 1. Rename Murmurhash3.cpp to Murmurhash3.c 2. Import Murmurhash3.h and Murmurhash3.c into Xcode 3. Attempt to compile it into a project. What is the...

Type-Defect
Priority-Medium
auto-migrated

``` Your MurmurHash3 implementation uses the following tail code: switch(len & 3) { case 3: k1 ^= tail[2]

Type-Defect
Priority-Medium
auto-migrated

``` If of any interest I wrote a 32bit constexpr MurmurHash3 implementation that calculates the hash value at compile time: https://gist.github.com/mattyclarkson/5318077 ``` Original issue reported on code.google.com by `[email protected]` on...

Type-Defect
Priority-Medium
auto-migrated

``` o it calculates the buffer size in quadwords, rounded down nblocks = len/16; o then the body loop iterates i up to nblocks-1: for(int i = 0; i <...

Type-Defect
Priority-Medium
auto-migrated