Lines Matching refs:ip
31 const uint64_t *ip = buf; in fletcher_2_native() local
32 const uint64_t *ipend = ip + (size / sizeof (uint64_t)); in fletcher_2_native()
35 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_native()
36 a0 += ip[0]; in fletcher_2_native()
37 a1 += ip[1]; in fletcher_2_native()
48 const uint64_t *ip = buf; in fletcher_2_byteswap() local
49 const uint64_t *ipend = ip + (size / sizeof (uint64_t)); in fletcher_2_byteswap()
52 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_byteswap()
53 a0 += BSWAP_64(ip[0]); in fletcher_2_byteswap()
54 a1 += BSWAP_64(ip[1]); in fletcher_2_byteswap()
65 const uint32_t *ip = buf; in fletcher_4_native() local
66 const uint32_t *ipend = ip + (size / sizeof (uint32_t)); in fletcher_4_native()
69 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_native()
70 a += ip[0]; in fletcher_4_native()
82 const uint32_t *ip = buf; in fletcher_4_byteswap() local
83 const uint32_t *ipend = ip + (size / sizeof (uint32_t)); in fletcher_4_byteswap()
86 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_byteswap()
87 a += BSWAP_32(ip[0]); in fletcher_4_byteswap()