jhash.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_JHASH_H
  2. #define _LINUX_JHASH_H
  3. /* jhash.h: Jenkins hash support.
  4.  *
  5.  * Copyright (C) 1996 Bob Jenkins (bob_jenkins@burtleburtle.net)
  6.  *
  7.  * http://burtleburtle.net/bob/hash/
  8.  *
  9.  * These are the credits from Bob's sources:
  10.  *
  11.  * lookup2.c, by Bob Jenkins, December 1996, Public Domain.
  12.  * hash(), hash2(), hash3, and mix() are externally useful functions.
  13.  * Routines to test the hash are included if SELF_TEST is defined.
  14.  * You can use this free for any purpose.  It has no warranty.
  15.  *
  16.  * Copyright (C) 2003 David S. Miller (davem@redhat.com)
  17.  *
  18.  * I've modified Bob's hash to be useful in the Linux kernel, and
  19.  * any bugs present are surely my fault.  -DaveM
  20.  */
  21. /* NOTE: Arguments are modified. */
  22. #define __jhash_mix(a, b, c) 
  23.   a -= b; a -= c; a ^= (c>>13); 
  24.   b -= c; b -= a; b ^= (a<<8); 
  25.   c -= a; c -= b; c ^= (b>>13); 
  26.   a -= b; a -= c; a ^= (c>>12);  
  27.   b -= c; b -= a; b ^= (a<<16); 
  28.   c -= a; c -= b; c ^= (b>>5); 
  29.   a -= b; a -= c; a ^= (c>>3);  
  30.   b -= c; b -= a; b ^= (a<<10); 
  31.   c -= a; c -= b; c ^= (b>>15); 
  32. }
  33. /* The golden ration: an arbitrary value */
  34. #define JHASH_GOLDEN_RATIO 0x9e3779b9
  35. /* The most generic version, hashes an arbitrary sequence
  36.  * of bytes.  No alignment or length assumptions are made about
  37.  * the input key.
  38.  */
  39. static inline u32 jhash(const void *key, u32 length, u32 initval)
  40. {
  41. u32 a, b, c, len;
  42. const u8 *k = key;
  43. len = length;
  44. a = b = JHASH_GOLDEN_RATIO;
  45. c = initval;
  46. while (len >= 12) {
  47. a += (k[0] +((u32)k[1]<<8) +((u32)k[2]<<16) +((u32)k[3]<<24));
  48. b += (k[4] +((u32)k[5]<<8) +((u32)k[6]<<16) +((u32)k[7]<<24));
  49. c += (k[8] +((u32)k[9]<<8) +((u32)k[10]<<16)+((u32)k[11]<<24));
  50. __jhash_mix(a,b,c);
  51. k += 12;
  52. len -= 12;
  53. }
  54. c += length;
  55. switch (len) {
  56. case 11: c += ((u32)k[10]<<24);
  57. case 10: c += ((u32)k[9]<<16);
  58. case 9 : c += ((u32)k[8]<<8);
  59. case 8 : b += ((u32)k[7]<<24);
  60. case 7 : b += ((u32)k[6]<<16);
  61. case 6 : b += ((u32)k[5]<<8);
  62. case 5 : b += k[4];
  63. case 4 : a += ((u32)k[3]<<24);
  64. case 3 : a += ((u32)k[2]<<16);
  65. case 2 : a += ((u32)k[1]<<8);
  66. case 1 : a += k[0];
  67. };
  68. __jhash_mix(a,b,c);
  69. return c;
  70. }
  71. /* A special optimized version that handles 1 or more of u32s.
  72.  * The length parameter here is the number of u32s in the key.
  73.  */
  74. static inline u32 jhash2(u32 *k, u32 length, u32 initval)
  75. {
  76. u32 a, b, c, len;
  77. a = b = JHASH_GOLDEN_RATIO;
  78. c = initval;
  79. len = length;
  80. while (len >= 3) {
  81. a += k[0];
  82. b += k[1];
  83. c += k[2];
  84. __jhash_mix(a, b, c);
  85. k += 3; len -= 3;
  86. }
  87. c += length * 4;
  88. switch (len) {
  89. case 2 : b += k[1];
  90. case 1 : a += k[0];
  91. };
  92. __jhash_mix(a,b,c);
  93. return c;
  94. }
  95. /* A special ultra-optimized versions that knows they are hashing exactly
  96.  * 3, 2 or 1 word(s).
  97.  *
  98.  * NOTE: In partilar the "c += length; __jhash_mix(a,b,c);" normally
  99.  *       done at the end is not done here.
  100.  */
  101. static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval)
  102. {
  103. a += JHASH_GOLDEN_RATIO;
  104. b += JHASH_GOLDEN_RATIO;
  105. c += initval;
  106. __jhash_mix(a, b, c);
  107. return c;
  108. }
  109. static inline u32 jhash_2words(u32 a, u32 b, u32 initval)
  110. {
  111. return jhash_3words(a, b, 0, initval);
  112. }
  113. static inline u32 jhash_1word(u32 a, u32 initval)
  114. {
  115. return jhash_3words(a, 0, 0, initval);
  116. }
  117. #endif /* _LINUX_JHASH_H */