Lines Matching refs:k8

252 	const uint8_t  *k8;
295 k8 = (const uint8_t *)k;
298 case 11: c += ((uint32_t)k8[10])<<16; /* fallthrough */
299 case 10: c += ((uint32_t)k8[9])<<8; /* fallthrough */
300 case 9: c += k8[8]; /* fallthrough */
302 case 7: b += ((uint32_t)k8[6])<<16; /* fallthrough */
303 case 6: b += ((uint32_t)k8[5])<<8; /* fallthrough */
304 case 5: b += k8[4]; /* fallthrough */
306 case 3: a += ((uint32_t)k8[2])<<16; /* fallthrough */
307 case 2: a += ((uint32_t)k8[1])<<8; /* fallthrough */
308 case 1: a += k8[0]; break;
316 const uint8_t *k8;
329 k8 = (const uint8_t *)k;
337 c += ((uint32_t)k8[10])<<16;
345 c += (uint32_t)k8[8];
352 b += ((uint32_t)k8[6])<<16;
359 b += (uint32_t)k8[4];
365 a += ((uint32_t)k8[2])<<16;
371 a += (uint32_t)k8[0];
459 const uint8_t *k8;
501 k8 = (const uint8_t *)k;
504 case 11: c += ((uint32_t)k8[10])<<16; /* fallthrough */
505 case 10: c += ((uint32_t)k8[9])<<8; /* fallthrough */
506 case 9: c += k8[8]; /* fallthrough */
508 case 7: b += ((uint32_t)k8[6])<<16; /* fallthrough */
509 case 6: b += ((uint32_t)k8[5])<<8; /* fallthrough */
510 case 5: b += k8[4]; /* fallthrough */
512 case 3: a += ((uint32_t)k8[2])<<16; /* fallthrough */
513 case 2: a += ((uint32_t)k8[1])<<8; /* fallthrough */
514 case 1: a += k8[0]; break;
522 const uint8_t *k8;
535 k8 = (const uint8_t *)k;
543 c += ((uint32_t)k8[10])<<16;
551 c += k8[8];
558 b += ((uint32_t)k8[6])<<16;
565 b += k8[4];
571 a += ((uint32_t)k8[2])<<16;
577 a += k8[0];
661 const uint8_t *k8;
704 k8 = (const uint8_t *)k;
707 case 11: c += ((uint32_t)k8[10])<<8; /* fallthrough */
708 case 10: c += ((uint32_t)k8[9])<<16; /* fallthrough */
709 case 9: c += ((uint32_t)k8[8])<<24; /* fallthrough */
711 case 7: b += ((uint32_t)k8[6])<<8; /* fallthrough */
712 case 6: b += ((uint32_t)k8[5])<<16; /* fallthrough */
713 case 5: b += ((uint32_t)k8[4])<<24; /* fallthrough */
715 case 3: a += ((uint32_t)k8[2])<<8; /* fallthrough */
716 case 2: a += ((uint32_t)k8[1])<<16; /* fallthrough */
717 case 1: a += ((uint32_t)k8[0])<<24; break;