Lines Matching refs:k8

294     const uint8_t  *k8;  in hashlittle()  local
338 k8 = (const uint8_t *)k; in hashlittle()
342 case 11: c+=((uint32_t)k8[10])<<16; /* fall through */ in hashlittle()
343 case 10: c+=((uint32_t)k8[9])<<8; /* fall through */ in hashlittle()
344 case 9 : c+=k8[8]; /* fall through */ in hashlittle()
346 case 7 : b+=((uint32_t)k8[6])<<16; /* fall through */ in hashlittle()
347 case 6 : b+=((uint32_t)k8[5])<<8; /* fall through */ in hashlittle()
348 case 5 : b+=k8[4]; /* fall through */ in hashlittle()
350 case 3 : a+=((uint32_t)k8[2])<<16; /* fall through */ in hashlittle()
351 case 2 : a+=((uint32_t)k8[1])<<8; /* fall through */ in hashlittle()
352 case 1 : a+=k8[0]; break; in hashlittle()
360 const uint8_t *k8; in hashlittle() local
374 k8 = (const uint8_t *)k; in hashlittle()
381 case 11: c+=((uint32_t)k8[10])<<16; /* fall through */ in hashlittle()
386 case 9 : c+=k8[8]; /* fall through */ in hashlittle()
390 case 7 : b+=((uint32_t)k8[6])<<16; /* fall through */ in hashlittle()
394 case 5 : b+=k8[4]; /* fall through */ in hashlittle()
397 case 3 : a+=((uint32_t)k8[2])<<16; /* fall through */ in hashlittle()
400 case 1 : a+=k8[0]; in hashlittle()
479 const uint8_t *k8; in hashlittle2() local
523 k8 = (const uint8_t *)k; in hashlittle2()
527 case 11: c+=((uint32_t)k8[10])<<16; /* fall through */ in hashlittle2()
528 case 10: c+=((uint32_t)k8[9])<<8; /* fall through */ in hashlittle2()
529 case 9 : c+=k8[8]; /* fall through */ in hashlittle2()
531 case 7 : b+=((uint32_t)k8[6])<<16; /* fall through */ in hashlittle2()
532 case 6 : b+=((uint32_t)k8[5])<<8; /* fall through */ in hashlittle2()
533 case 5 : b+=k8[4]; /* fall through */ in hashlittle2()
535 case 3 : a+=((uint32_t)k8[2])<<16; /* fall through */ in hashlittle2()
536 case 2 : a+=((uint32_t)k8[1])<<8; /* fall through */ in hashlittle2()
537 case 1 : a+=k8[0]; break; in hashlittle2()
545 const uint8_t *k8; in hashlittle2() local
559 k8 = (const uint8_t *)k; in hashlittle2()
566 case 11: c+=((uint32_t)k8[10])<<16; /* fall through */ in hashlittle2()
571 case 9 : c+=k8[8]; /* fall through */ in hashlittle2()
575 case 7 : b+=((uint32_t)k8[6])<<16; /* fall through */ in hashlittle2()
579 case 5 : b+=k8[4]; /* fall through */ in hashlittle2()
582 case 3 : a+=((uint32_t)k8[2])<<16; /* fall through */ in hashlittle2()
585 case 1 : a+=k8[0]; in hashlittle2()
656 const uint8_t *k8; in hashbig() local
700 k8 = (const uint8_t *)k; in hashbig()
704 case 11: c+=((uint32_t)k8[10])<<8; /* fall through */ in hashbig()
705 case 10: c+=((uint32_t)k8[9])<<16; /* fall through */ in hashbig()
706 case 9 : c+=((uint32_t)k8[8])<<24; /* fall through */ in hashbig()
708 case 7 : b+=((uint32_t)k8[6])<<8; /* fall through */ in hashbig()
709 case 6 : b+=((uint32_t)k8[5])<<16; /* fall through */ in hashbig()
710 case 5 : b+=((uint32_t)k8[4])<<24; /* fall through */ in hashbig()
712 case 3 : a+=((uint32_t)k8[2])<<8; /* fall through */ in hashbig()
713 case 2 : a+=((uint32_t)k8[1])<<16; /* fall through */ in hashbig()
714 case 1 : a+=((uint32_t)k8[0])<<24; break; in hashbig()