Skip to content
Snippets Groups Projects
Unverified Commit f957593f authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-web: template_lmo: clean up sfh_hash()

parent 9e8a6ec2
Branches
Tags
No related merge requests found
...@@ -22,40 +22,37 @@ ...@@ -22,40 +22,37 @@
* Hash function from http://www.azillionmonkeys.com/qed/hash.html * Hash function from http://www.azillionmonkeys.com/qed/hash.html
* Copyright (C) 2004-2008 by Paul Hsieh * Copyright (C) 2004-2008 by Paul Hsieh
*/ */
static inline uint16_t get_le16(const uint8_t *d) {
return (((uint16_t)d[1]) << 8) | d[0];
}
static uint32_t sfh_hash(const char *data, int len) static uint32_t sfh_hash(const uint8_t *data, int len)
{ {
uint32_t hash = len, tmp; uint32_t hash = len, tmp;
int rem;
if (len <= 0 || data == NULL) return 0;
rem = len & 3;
len >>= 2;
/* Main loop */ /* Main loop */
for (;len > 0; len--) { for (; len > 3; len -= 4) {
hash += sfh_get16(data); hash += get_le16(data);
tmp = (sfh_get16(data+2) << 11) ^ hash; tmp = (get_le16(data+2) << 11) ^ hash;
hash = (hash << 16) ^ tmp; hash = (hash << 16) ^ tmp;
data += 2*sizeof(uint16_t); data += 4;
hash += hash >> 11; hash += hash >> 11;
} }
/* Handle end cases */ /* Handle end cases */
switch (rem) { switch (len) {
case 3: hash += sfh_get16(data); case 3: hash += get_le16(data);
hash ^= hash << 16; hash ^= hash << 16;
hash ^= data[sizeof(uint16_t)] << 18; hash ^= data[2] << 18;
hash += hash >> 11; hash += hash >> 11;
break; break;
case 2: hash += sfh_get16(data); case 2: hash += get_le16(data);
hash ^= hash << 11; hash ^= hash << 11;
hash += hash >> 17; hash += hash >> 17;
break; break;
case 1: hash += *data; case 1: hash += *data;
hash ^= hash << 10; hash ^= hash << 10;
hash += hash >> 1; hash += hash >> 1;
} }
/* Force "avalanching" of final 127 bits */ /* Force "avalanching" of final 127 bits */
......
...@@ -34,13 +34,6 @@ ...@@ -34,13 +34,6 @@
#include <ctype.h> #include <ctype.h>
#include <limits.h> #include <limits.h>
#if (defined(__GNUC__) && defined(__i386__))
#define sfh_get16(d) (*((const uint16_t *) (d)))
#else
#define sfh_get16(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8)\
+(uint32_t)(((const uint8_t *)(d))[0]) )
#endif
struct lmo_entry { struct lmo_entry {
uint32_t key_id; uint32_t key_id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment