• Home
  • Raw
  • Download

Lines Matching refs:k8

187     const uint8_t  *k8;  in hashlittle()  local
232 k8 = (const uint8_t *)k; in hashlittle()
236 case 11: c+=((uint32_t)k8[10])<<16; /* fall through */ in hashlittle()
237 case 10: c+=((uint32_t)k8[9])<<8; /* fall through */ in hashlittle()
238 case 9 : c+=k8[8]; /* fall through */ in hashlittle()
240 case 7 : b+=((uint32_t)k8[6])<<16; /* fall through */ in hashlittle()
241 case 6 : b+=((uint32_t)k8[5])<<8; /* fall through */ in hashlittle()
242 case 5 : b+=k8[4]; /* fall through */ in hashlittle()
244 case 3 : a+=((uint32_t)k8[2])<<16; /* fall through */ in hashlittle()
245 case 2 : a+=((uint32_t)k8[1])<<8; /* fall through */ in hashlittle()
246 case 1 : a+=k8[0]; break; in hashlittle()
254 const uint8_t *k8; in hashlittle() local
268 k8 = (const uint8_t *)k; in hashlittle()
275 case 11: c+=((uint32_t)k8[10])<<16; /* fall through */ in hashlittle()
280 case 9 : c+=k8[8]; /* fall through */ in hashlittle()
284 case 7 : b+=((uint32_t)k8[6])<<16; /* fall through */ in hashlittle()
288 case 5 : b+=k8[4]; /* fall through */ in hashlittle()
291 case 3 : a+=((uint32_t)k8[2])<<16; /* fall through */ in hashlittle()
294 case 1 : a+=k8[0]; in hashlittle()
364 const uint8_t *k8; in hashbig() local
409 k8 = (const uint8_t *)k; in hashbig()
413 case 11: c+=((uint32_t)k8[10])<<8; /* fall through */ in hashbig()
414 case 10: c+=((uint32_t)k8[9])<<16; /* fall through */ in hashbig()
415 case 9 : c+=((uint32_t)k8[8])<<24; /* fall through */ in hashbig()
417 case 7 : b+=((uint32_t)k8[6])<<8; /* fall through */ in hashbig()
418 case 6 : b+=((uint32_t)k8[5])<<16; /* fall through */ in hashbig()
419 case 5 : b+=((uint32_t)k8[4])<<24; /* fall through */ in hashbig()
421 case 3 : a+=((uint32_t)k8[2])<<8; /* fall through */ in hashbig()
422 case 2 : a+=((uint32_t)k8[1])<<16; /* fall through */ in hashbig()
423 case 1 : a+=((uint32_t)k8[0])<<24; break; in hashbig()