Lines Matching refs:ip
142 const uint64_t *ip = buf; in fletcher_2_native() local
143 const uint64_t *ipend = ip + (size / sizeof (uint64_t)); in fletcher_2_native()
146 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_native()
147 a0 += ip[0]; in fletcher_2_native()
148 a1 += ip[1]; in fletcher_2_native()
161 const uint64_t *ip = buf; in fletcher_2_byteswap() local
162 const uint64_t *ipend = ip + (size / sizeof (uint64_t)); in fletcher_2_byteswap()
165 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_byteswap()
166 a0 += BSWAP_64(ip[0]); in fletcher_2_byteswap()
167 a1 += BSWAP_64(ip[1]); in fletcher_2_byteswap()
180 const uint32_t *ip = buf; in fletcher_4_native() local
181 const uint32_t *ipend = ip + (size / sizeof (uint32_t)); in fletcher_4_native()
184 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_native()
185 a += ip[0]; in fletcher_4_native()
199 const uint32_t *ip = buf; in fletcher_4_byteswap() local
200 const uint32_t *ipend = ip + (size / sizeof (uint32_t)); in fletcher_4_byteswap()
203 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_byteswap()
204 a += BSWAP_32(ip[0]); in fletcher_4_byteswap()
217 const uint32_t *ip = buf; in fletcher_4_incremental_native() local
218 const uint32_t *ipend = ip + (size / sizeof (uint32_t)); in fletcher_4_incremental_native()
226 for (; ip < ipend; ip++) { in fletcher_4_incremental_native()
227 a += ip[0]; in fletcher_4_incremental_native()
240 const uint32_t *ip = buf; in fletcher_4_incremental_byteswap() local
241 const uint32_t *ipend = ip + (size / sizeof (uint32_t)); in fletcher_4_incremental_byteswap()
249 for (; ip < ipend; ip++) { in fletcher_4_incremental_byteswap()
250 a += BSWAP_32(ip[0]); in fletcher_4_incremental_byteswap()