亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? lookup8.c

?? 幾種c語言的hash算法
?? C
字號:
/*--------------------------------------------------------------------lookup8.c, by Bob Jenkins, January 4 1997, Public Domain.hash(), hash2(), hash3, and mix() are externally useful functions.Routines to test the hash are included if SELF_TEST is defined.You can use this free for any purpose.  It has no warranty.--------------------------------------------------------------------*/#define SELF_TEST#include <stdio.h>#include <stddef.h>#include <stdlib.h>typedef  unsigned long  long ub8;   /* unsigned 8-byte quantities */typedef  unsigned long  int  ub4;   /* unsigned 4-byte quantities */typedef  unsigned       char ub1;#define hashsize(n) ((ub8)1<<(n))#define hashmask(n) (hashsize(n)-1)/*--------------------------------------------------------------------mix -- mix 3 64-bit values reversibly.mix() takes 48 machine instructions, but only 24 cycles on a superscalar  machine (like Intel's new MMX architecture).  It requires 4 64-bit  registers for 4::2 parallelism.All 1-bit deltas, all 2-bit deltas, all deltas composed of top bits of  (a,b,c), and all deltas of bottom bits were tested.  All deltas were  tested both on random keys and on keys that were nearly all zero.  These deltas all cause every bit of c to change between 1/3 and 2/3  of the time (well, only 113/400 to 287/400 of the time for some  2-bit delta).  These deltas all cause at least 80 bits to change  among (a,b,c) when the mix is run either forward or backward (yes it  is reversible).This implies that a hash using mix64 has no funnels.  There may be  characteristics with 3-bit deltas or bigger, I didn't test for  those.--------------------------------------------------------------------*/#define mix64(a,b,c) \{ \  a -= b; a -= c; a ^= (c>>43); \  b -= c; b -= a; b ^= (a<<9); \  c -= a; c -= b; c ^= (b>>8); \  a -= b; a -= c; a ^= (c>>38); \  b -= c; b -= a; b ^= (a<<23); \  c -= a; c -= b; c ^= (b>>5); \  a -= b; a -= c; a ^= (c>>35); \  b -= c; b -= a; b ^= (a<<49); \  c -= a; c -= b; c ^= (b>>11); \  a -= b; a -= c; a ^= (c>>12); \  b -= c; b -= a; b ^= (a<<18); \  c -= a; c -= b; c ^= (b>>22); \}/*--------------------------------------------------------------------hash() -- hash a variable-length key into a 64-bit value  k     : the key (the unaligned variable-length array of bytes)  len   : the length of the key, counting by bytes  level : can be any 8-byte valueReturns a 64-bit value.  Every bit of the key affects every bit ofthe return value.  No funnels.  Every 1-bit and 2-bit delta achievesavalanche.  About 41+5len instructions.The best hash table sizes are powers of 2.  There is no need to domod a prime (mod is sooo slow!).  If you need less than 64 bits,use a bitmask.  For example, if you need only 10 bits, do  h = (h & hashmask(10));In which case, the hash table should have hashsize(10) elements.If you are hashing n strings (ub1 **)k, do it like this:  for (i=0, h=0; i<n; ++i) h = hash( k[i], len[i], h);By Bob Jenkins, Jan 4 1997.  bob_jenkins@burtleburtle.net.  You mayuse this code any way you wish, private, educational, or commercial,but I would appreciate if you give me credit.See http://burtleburtle.net/bob/hash/evahash.htmlUse for hash table lookup, or anything where one collision in 2^^64is acceptable.  Do NOT use for cryptographic purposes.--------------------------------------------------------------------*/ub8 hash( k, length, level)register ub1 *k;        /* the key */register ub8  length;   /* the length of the key */register ub8  level;    /* the previous hash, or an arbitrary value */{  register ub8 a,b,c,len;  /* Set up the internal state */  len = length;  a = b = level;                         /* the previous hash value */  c = 0x9e3779b97f4a7c13LL; /* the golden ratio; an arbitrary value */  /*---------------------------------------- handle most of the key */  while (len >= 24)  {    a += (k[0]        +((ub8)k[ 1]<< 8)+((ub8)k[ 2]<<16)+((ub8)k[ 3]<<24)     +((ub8)k[4 ]<<32)+((ub8)k[ 5]<<40)+((ub8)k[ 6]<<48)+((ub8)k[ 7]<<56));    b += (k[8]        +((ub8)k[ 9]<< 8)+((ub8)k[10]<<16)+((ub8)k[11]<<24)     +((ub8)k[12]<<32)+((ub8)k[13]<<40)+((ub8)k[14]<<48)+((ub8)k[15]<<56));    c += (k[16]       +((ub8)k[17]<< 8)+((ub8)k[18]<<16)+((ub8)k[19]<<24)     +((ub8)k[20]<<32)+((ub8)k[21]<<40)+((ub8)k[22]<<48)+((ub8)k[23]<<56));    mix64(a,b,c);    k += 24; len -= 24;  }  /*------------------------------------- handle the last 23 bytes */  c += length;  switch(len)              /* all the case statements fall through */  {  case 23: c+=((ub8)k[22]<<56);  case 22: c+=((ub8)k[21]<<48);  case 21: c+=((ub8)k[20]<<40);  case 20: c+=((ub8)k[19]<<32);  case 19: c+=((ub8)k[18]<<24);  case 18: c+=((ub8)k[17]<<16);  case 17: c+=((ub8)k[16]<<8);    /* the first byte of c is reserved for the length */  case 16: b+=((ub8)k[15]<<56);  case 15: b+=((ub8)k[14]<<48);  case 14: b+=((ub8)k[13]<<40);  case 13: b+=((ub8)k[12]<<32);  case 12: b+=((ub8)k[11]<<24);  case 11: b+=((ub8)k[10]<<16);  case 10: b+=((ub8)k[ 9]<<8);  case  9: b+=((ub8)k[ 8]);  case  8: a+=((ub8)k[ 7]<<56);  case  7: a+=((ub8)k[ 6]<<48);  case  6: a+=((ub8)k[ 5]<<40);  case  5: a+=((ub8)k[ 4]<<32);  case  4: a+=((ub8)k[ 3]<<24);  case  3: a+=((ub8)k[ 2]<<16);  case  2: a+=((ub8)k[ 1]<<8);  case  1: a+=((ub8)k[ 0]);    /* case 0: nothing left to add */  }  mix64(a,b,c);  /*-------------------------------------------- report the result */  return c;}/*-------------------------------------------------------------------- This works on all machines, is identical to hash() on little-endian  machines, and it is much faster than hash(), but it requires -- that the key be an array of ub8's, and -- that all your machines have the same endianness, and -- that the length be the number of ub8's in the key--------------------------------------------------------------------*/ub8 hash2( k, length, level)register ub8 *k;        /* the key */register ub8  length;   /* the length of the key */register ub8  level;    /* the previous hash, or an arbitrary value */{  register ub8 a,b,c,len;  /* Set up the internal state */  len = length;  a = b = level;                         /* the previous hash value */  c = 0x9e3779b97f4a7c13LL; /* the golden ratio; an arbitrary value */  /*---------------------------------------- handle most of the key */  while (len >= 3)  {    a += k[0];    b += k[1];    c += k[2];    mix64(a,b,c);    k += 3; len -= 3;  }  /*-------------------------------------- handle the last 2 ub8's */  c += (length<<3);  switch(len)              /* all the case statements fall through */  {    /* c is reserved for the length */  case  2: b+=k[1];  case  1: a+=k[0];    /* case 0: nothing left to add */  }  mix64(a,b,c);  /*-------------------------------------------- report the result */  return c;}/*-------------------------------------------------------------------- This is identical to hash() on little-endian machines, and it is much faster than hash(), but a little slower than hash2(), and it requires -- that all your machines be little-endian, for example all Intel x86    chips or all VAXen.  It gives wrong results on big-endian machines.--------------------------------------------------------------------*/ub8 hash3( k, length, level)register ub1 *k;        /* the key */register ub8  length;   /* the length of the key */register ub8  level;    /* the previous hash, or an arbitrary value */{  register ub8 a,b,c,len;  /* Set up the internal state */  len = length;  a = b = level;                         /* the previous hash value */  c = 0x9e3779b97f4a7c13LL; /* the golden ratio; an arbitrary value */  /*---------------------------------------- handle most of the key */  if (((size_t)k)&7)  {    while (len >= 24)    {      a += (k[0]        +((ub8)k[ 1]<< 8)+((ub8)k[ 2]<<16)+((ub8)k[ 3]<<24)       +((ub8)k[4 ]<<32)+((ub8)k[ 5]<<40)+((ub8)k[ 6]<<48)+((ub8)k[ 7]<<56));      b += (k[8]        +((ub8)k[ 9]<< 8)+((ub8)k[10]<<16)+((ub8)k[11]<<24)       +((ub8)k[12]<<32)+((ub8)k[13]<<40)+((ub8)k[14]<<48)+((ub8)k[15]<<56));      c += (k[16]       +((ub8)k[17]<< 8)+((ub8)k[18]<<16)+((ub8)k[19]<<24)       +((ub8)k[20]<<32)+((ub8)k[21]<<40)+((ub8)k[22]<<48)+((ub8)k[23]<<56));      mix64(a,b,c);      k += 24; len -= 24;    }  }  else  {    while (len >= 24)    /* aligned */    {      a += *(ub8 *)(k+0);      b += *(ub8 *)(k+8);      c += *(ub8 *)(k+16);      mix64(a,b,c);      k += 24; len -= 24;    }  }  /*------------------------------------- handle the last 23 bytes */  c += length;  switch(len)              /* all the case statements fall through */  {  case 23: c+=((ub8)k[22]<<56);  case 22: c+=((ub8)k[21]<<48);  case 21: c+=((ub8)k[20]<<40);  case 20: c+=((ub8)k[19]<<32);  case 19: c+=((ub8)k[18]<<24);  case 18: c+=((ub8)k[17]<<16);  case 17: c+=((ub8)k[16]<<8);    /* the first byte of c is reserved for the length */  case 16: b+=((ub8)k[15]<<56);  case 15: b+=((ub8)k[14]<<48);  case 14: b+=((ub8)k[13]<<40);  case 13: b+=((ub8)k[12]<<32);  case 12: b+=((ub8)k[11]<<24);  case 11: b+=((ub8)k[10]<<16);  case 10: b+=((ub8)k[ 9]<<8);  case  9: b+=((ub8)k[ 8]);  case  8: a+=((ub8)k[ 7]<<56);  case  7: a+=((ub8)k[ 6]<<48);  case  6: a+=((ub8)k[ 5]<<40);  case  5: a+=((ub8)k[ 4]<<32);  case  4: a+=((ub8)k[ 3]<<24);  case  3: a+=((ub8)k[ 2]<<16);  case  2: a+=((ub8)k[ 1]<<8);  case  1: a+=((ub8)k[ 0]);    /* case 0: nothing left to add */  }  mix64(a,b,c);  /*-------------------------------------------- report the result */  return c;}#ifdef SELF_TEST/* used for timings */void driver1(){  ub8 buf[256];  ub8 i;  ub8 h=0;  for (i=0; i<256; ++i)   {    h = hash(buf,i,h);  }}/* check that every input bit changes every output bit half the time */#define HASHSTATE 1#define HASHLEN   1#define MAXPAIR 80#define MAXLEN 5void driver2(){  ub1 qa[MAXLEN+1], qb[MAXLEN+2], *a = &qa[0], *b = &qb[1];  ub8 c[HASHSTATE], d[HASHSTATE], i, j=0, k, l, m, z;  ub8 e[HASHSTATE],f[HASHSTATE],g[HASHSTATE],h[HASHSTATE];  ub8 x[HASHSTATE],y[HASHSTATE];  ub8 hlen;  printf("No more than %d trials should ever be needed \n",MAXPAIR/2);  for (hlen=0; hlen < MAXLEN; ++hlen)  {    z=0;    for (i=0; i<hlen; ++i)  /*----------------------- for each byte, */    {      for (j=0; j<8; ++j)   /*------------------------ for each bit, */      {	for (m=0; m<8; ++m) /*-------- for serveral possible levels, */	{	  for (l=0; l<HASHSTATE; ++l) e[l]=f[l]=g[l]=h[l]=x[l]=y[l]=~((ub8)0);      	  /*---- check that every input bit affects every output bit */	  for (k=0; k<MAXPAIR; k+=2)	  { 	    ub8 finished=1;	    /* keys have one bit different */	    for (l=0; l<hlen+1; ++l) {a[l] = b[l] = (ub1)0;}	    /* have a and b be two keys differing in only one bit */	    a[i] ^= (k<<j);	    a[i] ^= (k>>(8-j));	     c[0] = hash(a, hlen, m);	    b[i] ^= ((k+1)<<j);	    b[i] ^= ((k+1)>>(8-j));	     d[0] = hash(b, hlen, m);	    /* check every bit is 1, 0, set, and not set at least once */	    for (l=0; l<HASHSTATE; ++l)	    {	      e[l] &= (c[l]^d[l]);	      f[l] &= ~(c[l]^d[l]);	      g[l] &= c[l];	      h[l] &= ~c[l];	      x[l] &= d[l];	      y[l] &= ~d[l];	      if (e[l]|f[l]|g[l]|h[l]|x[l]|y[l]) finished=0;	    }	    if (finished) break;	  }	  if (k>z) z=k;	  if (k==MAXPAIR) 	  {	     printf("Some bit didn't change: ");	     printf("%.8lx %.8lx %.8lx %.8lx %.8lx %.8lx  ",	            e[0],f[0],g[0],h[0],x[0],y[0]);	     printf("i %ld j %ld m %ld len %ld\n",	            (ub4)i,(ub4)j,(ub4)m,(ub4)hlen);	  }	  if (z==MAXPAIR) goto done;	}      }    }   done:    if (z < MAXPAIR)    {      printf("Mix success  %2ld bytes  %2ld levels  ",(ub4)i,(ub4)m);      printf("required  %ld  trials\n",(ub4)(z/2));    }  }  printf("\n");}/* Check for reading beyond the end of the buffer and alignment problems */void driver3(){  ub1 buf[MAXLEN+20], *b;  ub8 len;  ub1 q[] = "This is the time for all good men to come to the aid of their country";  ub1 qq[] = "xThis is the time for all good men to come to the aid of their country";  ub1 qqq[] = "xxThis is the time for all good men to come to the aid of their country";  ub1 qqqq[] = "xxxThis is the time for all good men to come to the aid of their country";  ub1 o[] = "xxxxThis is the time for all good men to come to the aid of their country";  ub1 oo[] = "xxxxxThis is the time for all good men to come to the aid of their country";  ub1 ooo[] = "xxxxxxThis is the time for all good men to come to the aid of their country";  ub1 oooo[] = "xxxxxxxThis is the time for all good men to come to the aid of their country";  ub8 h,i,j,ref,x,y;  printf("Endianness.  These should all be the same:\n");  h = hash(q+0, (ub8)(sizeof(q)-1), (ub8)0);  printf("%.8lx%.8lx\n", (ub4)h, (ub4)(h>>32));  h = hash(qq+1, (ub8)(sizeof(q)-1), (ub8)0);  printf("%.8lx%.8lx\n", (ub4)h, (ub4)(h>>32));  h = hash(qqq+2, (ub8)(sizeof(q)-1), (ub8)0);  printf("%.8lx%.8lx\n", (ub4)h, (ub4)(h>>32));  h = hash(qqqq+3, (ub8)(sizeof(q)-1), (ub8)0);  printf("%.8lx%.8lx\n", (ub4)h, (ub4)(h>>32));  h = hash(o+4, (ub8)(sizeof(q)-1), (ub8)0);  printf("%.8lx%.8lx\n", (ub4)h, (ub4)(h>>32));  h = hash(oo+5, (ub8)(sizeof(q)-1), (ub8)0);  printf("%.8lx%.8lx\n", (ub4)h, (ub4)(h>>32));  h = hash(ooo+6, (ub8)(sizeof(q)-1), (ub8)0);  printf("%.8lx%.8lx\n", (ub4)h, (ub4)(h>>32));  h = hash(oooo+7, (ub8)(sizeof(q)-1), (ub8)0);  printf("%.8lx%.8lx\n", (ub4)h, (ub4)(h>>32));  printf("\n");  for (h=0, b=buf+1; h<8; ++h, ++b)  {    for (i=0; i<MAXLEN; ++i)    {      len = i;      for (j=0; j<i; ++j) *(b+j)=0;      /* these should all be equal */      ref = hash(b, len, (ub8)1);      *(b+i)=(ub1)~0;      *(b-1)=(ub1)~0;      x = hash(b, len, (ub8)1);      y = hash(b, len, (ub8)1);      if ((ref != x) || (ref != y))       {	printf("alignment error: %.8lx %.8lx %.8lx %ld %ld\n",ref,x,y,h,i);      }    }  }}/* check for problems with nulls */ void driver4(){  ub1 buf[1];  ub8 h,i,state[HASHSTATE];  buf[0] = ~0;  for (i=0; i<HASHSTATE; ++i) state[i] = 1;  printf("These should all be different\n");  for (i=0, h=0; i<8; ++i)  {    h = hash(buf, (ub8)0, h);    printf("%2ld  0-byte strings, hash is  %.8lx%.8lx\n", (ub4)i,      (ub4)h,(ub4)(h>>32));  }}int main(){  driver1();   /* test that the key is hashed: used for timings */  driver2();   /* test that whole key is hashed thoroughly */  driver3();   /* test that nothing but the key is hashed */  driver4();   /* test hashing multiple buffers (all buffers are null) */  return 1;}#endif  /* SELF_TEST */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
视频在线观看一区二区三区| www日韩大片| 亚洲自拍偷拍综合| 欧美日韩夫妻久久| 国产一区二区三区电影在线观看| 欧美v国产在线一区二区三区| 国产在线一区观看| 国产精品高潮呻吟久久| 在线观看日产精品| 日韩1区2区日韩1区2区| 精品国产伦理网| 成人a免费在线看| 亚洲永久免费av| 日韩视频免费观看高清完整版在线观看 | 欧美在线观看一区| 视频在线观看91| 国产婷婷色一区二区三区在线| 95精品视频在线| 麻豆久久一区二区| 亚洲欧洲美洲综合色网| 欧美色综合天天久久综合精品| 蜜臀av性久久久久蜜臀aⅴ| 国产日韩欧美精品在线| 91国偷自产一区二区三区观看| 日韩精品国产精品| 国产精品福利影院| 欧美成人三级在线| 色婷婷综合久久久| 国产99一区视频免费| 成人免费一区二区三区在线观看| 欧美日韩国产免费| 不卡电影一区二区三区| 美女视频第一区二区三区免费观看网站| 欧美一级高清片| 91蜜桃传媒精品久久久一区二区| 日本不卡一二三| 一区二区三区精品视频在线| 337p日本欧洲亚洲大胆精品| 欧美在线一区二区| 成人免费毛片嘿嘿连载视频| 久久精品国产澳门| 五月婷婷综合网| 亚洲视频精选在线| 国产三级一区二区| 欧美成人在线直播| 欧美人体做爰大胆视频| 91视视频在线直接观看在线看网页在线看| 日本一不卡视频| 亚洲国产婷婷综合在线精品| 中文字幕日韩一区| 国产亚洲精久久久久久| 日韩美女主播在线视频一区二区三区| 日本伦理一区二区| 成人免费的视频| 国产成人小视频| 狠狠色丁香久久婷婷综| 日韩国产精品久久久| 亚洲国产一二三| 一区二区三区产品免费精品久久75| 中文一区在线播放| 国产喷白浆一区二区三区| 日韩精品一区二区三区视频播放 | 欧美久久一二三四区| 91美女福利视频| 99精品久久久久久| 99在线精品免费| 成人国产电影网| 成人毛片老司机大片| 丰满少妇在线播放bd日韩电影| 黑人巨大精品欧美一区| 狠狠久久亚洲欧美| 国产麻豆精品theporn| 国产曰批免费观看久久久| 极品销魂美女一区二区三区| 精品亚洲欧美一区| 精品在线免费视频| 激情综合网天天干| 国产麻豆欧美日韩一区| 丁香啪啪综合成人亚洲小说| 成人黄色电影在线| 99这里只有精品| 欧美在线影院一区二区| 欧美精三区欧美精三区| 8v天堂国产在线一区二区| 中文乱码免费一区二区| 精品国产一二三| 久久综合久久综合久久综合| 精品国产亚洲在线| 久久久久久久久一| 国产精品久线在线观看| 亚洲人吸女人奶水| 午夜伦欧美伦电影理论片| 五月婷婷久久丁香| 久久国内精品自在自线400部| 韩国一区二区在线观看| 成人一级片在线观看| 色哟哟欧美精品| 欧美日韩一区三区四区| 欧美一区二区成人6969| 国产亚洲va综合人人澡精品 | 日韩成人一级大片| 国产综合色在线视频区| www.色综合.com| 精品视频在线视频| 欧美r级电影在线观看| 国产精品水嫩水嫩| 婷婷国产v国产偷v亚洲高清| 国产精品综合久久| 在线亚洲一区二区| 欧美成人video| 国产精品久久久久久久久动漫 | 久久亚洲免费视频| 亚洲天堂免费看| 日本欧美久久久久免费播放网| 久久99国产精品免费网站| 91猫先生在线| 久久这里只精品最新地址| 亚洲精品少妇30p| 国产在线一区二区| 欧美三级日本三级少妇99| 久久婷婷综合激情| 亚洲成av人片在www色猫咪| 国产伦精品一区二区三区视频青涩 | 日产国产欧美视频一区精品| 国内精品伊人久久久久影院对白| 色综合天天狠狠| 欧美精品一区二区久久久| 亚洲黄网站在线观看| 国产精品中文字幕一区二区三区| 欧美日韩国产中文| 国产精品女主播av| 国精产品一区一区三区mba视频 | 中文字幕在线不卡| 日韩中文欧美在线| 99re这里只有精品首页| 日韩精品一区二区在线观看| 亚洲欧洲另类国产综合| 国产一区二区三区四| 欧美一区二区二区| 亚洲国产精品久久久久婷婷884 | 欧美日韩大陆一区二区| 中文字幕一区二| 国内精品嫩模私拍在线| 在线播放日韩导航| 一区二区三区蜜桃网| gogogo免费视频观看亚洲一| 欧美tickling挠脚心丨vk| 五月综合激情婷婷六月色窝| 在线亚洲一区二区| 亚洲乱码国产乱码精品精可以看| 国产美女一区二区| 26uuu亚洲综合色欧美| 奇米888四色在线精品| 欧美美女一区二区| 亚洲成人久久影院| 欧美影视一区二区三区| 日韩国产欧美在线播放| 欧美日韩色综合| 自拍偷拍国产精品| 6080午夜不卡| 国产精品国模大尺度视频| 麻豆国产一区二区| 欧美一级黄色片| 日本午夜精品视频在线观看| 欧美日韩视频第一区| 一区二区三区美女| 欧美在线观看一区| 午夜在线电影亚洲一区| 欧美精品乱码久久久久久| 午夜精品免费在线| 91精品国产色综合久久不卡电影| 午夜精品久久久久久久99樱桃| 欧洲精品一区二区三区在线观看| 亚洲黄色片在线观看| 欧美日韩亚洲综合在线 | 国产欧美一区在线| 国产成人综合在线观看| 日本一区二区三区久久久久久久久不 | 中文字幕五月欧美| 精品一区二区影视| 日韩精品专区在线影院观看| 男人的天堂亚洲一区| 亚洲精品一区二区三区四区高清 | 尤物视频一区二区| 欧美日韩中字一区| 裸体一区二区三区| 国产三级欧美三级日产三级99 | 一本一道久久a久久精品| 亚洲一区二区在线免费观看视频| 欧美色视频一区| 蜜臀av性久久久久蜜臀aⅴ| 久久久久久久久一| 色久综合一二码| 日韩精品色哟哟| 国产欧美一二三区| 欧美久久一区二区| 国产成人啪免费观看软件| 樱桃国产成人精品视频| 欧美一区二区三区视频免费播放 | 91蜜桃免费观看视频|