jhash.h File Reference

#include <stdint.h>

Include dependency graph for jhash.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Defines

#define __jhash_mix(a, b, c)
#define JHASH_GOLDEN_RATIO   0x9e3779b9


Define Documentation

#define __jhash_mix ( a,
b,
 ) 

Value:

{ \
  a -= b; a -= c; a ^= (c>>13); \
  b -= c; b -= a; b ^= (a<<8); \
  c -= a; c -= b; c ^= (b>>13); \
  a -= b; a -= c; a ^= (c>>12);  \
  b -= c; b -= a; b ^= (a<<16); \
  c -= a; c -= b; c ^= (b>>5); \
  a -= b; a -= c; a ^= (c>>3);  \
  b -= c; b -= a; b ^= (a<<10); \
  c -= a; c -= b; c ^= (b>>15); \
}

Definition at line 28 of file jhash.h.

#define JHASH_GOLDEN_RATIO   0x9e3779b9

Definition at line 41 of file jhash.h.


Generated on Sat Nov 22 04:00:39 2008 for NuFW by  doxygen 1.4.7