• Home
  • Raw
  • Download

Lines Matching refs:k8

186     const uint8_t  *k8;  in hashlittle()  local
231 k8 = (const uint8_t *)k; in hashlittle()
235 case 11: c+=((uint32_t)k8[10])<<16; /* fall through */ in hashlittle()
236 case 10: c+=((uint32_t)k8[9])<<8; /* fall through */ in hashlittle()
237 case 9 : c+=k8[8]; /* fall through */ in hashlittle()
239 case 7 : b+=((uint32_t)k8[6])<<16; /* fall through */ in hashlittle()
240 case 6 : b+=((uint32_t)k8[5])<<8; /* fall through */ in hashlittle()
241 case 5 : b+=k8[4]; /* fall through */ in hashlittle()
243 case 3 : a+=((uint32_t)k8[2])<<16; /* fall through */ in hashlittle()
244 case 2 : a+=((uint32_t)k8[1])<<8; /* fall through */ in hashlittle()
245 case 1 : a+=k8[0]; break; in hashlittle()
253 const uint8_t *k8; in hashlittle() local
267 k8 = (const uint8_t *)k; in hashlittle()
274 case 11: c+=((uint32_t)k8[10])<<16; /* fall through */ in hashlittle()
279 case 9 : c+=k8[8]; /* fall through */ in hashlittle()
283 case 7 : b+=((uint32_t)k8[6])<<16; /* fall through */ in hashlittle()
287 case 5 : b+=k8[4]; /* fall through */ in hashlittle()
290 case 3 : a+=((uint32_t)k8[2])<<16; /* fall through */ in hashlittle()
293 case 1 : a+=k8[0]; in hashlittle()
363 const uint8_t *k8; in hashbig() local
408 k8 = (const uint8_t *)k; in hashbig()
412 case 11: c+=((uint32_t)k8[10])<<8; /* fall through */ in hashbig()
413 case 10: c+=((uint32_t)k8[9])<<16; /* fall through */ in hashbig()
414 case 9 : c+=((uint32_t)k8[8])<<24; /* fall through */ in hashbig()
416 case 7 : b+=((uint32_t)k8[6])<<8; /* fall through */ in hashbig()
417 case 6 : b+=((uint32_t)k8[5])<<16; /* fall through */ in hashbig()
418 case 5 : b+=((uint32_t)k8[4])<<24; /* fall through */ in hashbig()
420 case 3 : a+=((uint32_t)k8[2])<<8; /* fall through */ in hashbig()
421 case 2 : a+=((uint32_t)k8[1])<<16; /* fall through */ in hashbig()
422 case 1 : a+=((uint32_t)k8[0])<<24; break; in hashbig()