Lines Matching refs:ip
137 const uint64_t *ip = buf; in fletcher_2_native() local
138 const uint64_t *ipend = ip + (size / sizeof (uint64_t)); in fletcher_2_native()
141 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_native()
142 a0 += ip[0]; in fletcher_2_native()
143 a1 += ip[1]; in fletcher_2_native()
154 const uint64_t *ip = buf; in fletcher_2_byteswap() local
155 const uint64_t *ipend = ip + (size / sizeof (uint64_t)); in fletcher_2_byteswap()
158 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_byteswap()
159 a0 += BSWAP_64(ip[0]); in fletcher_2_byteswap()
160 a1 += BSWAP_64(ip[1]); in fletcher_2_byteswap()
171 const uint32_t *ip = buf; in fletcher_4_native() local
172 const uint32_t *ipend = ip + (size / sizeof (uint32_t)); in fletcher_4_native()
175 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_native()
176 a += ip[0]; in fletcher_4_native()
188 const uint32_t *ip = buf; in fletcher_4_byteswap() local
189 const uint32_t *ipend = ip + (size / sizeof (uint32_t)); in fletcher_4_byteswap()
192 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_byteswap()
193 a += BSWAP_32(ip[0]); in fletcher_4_byteswap()
206 const uint32_t *ip = buf; in fletcher_4_incremental_native() local
207 const uint32_t *ipend = ip + (size / sizeof (uint32_t)); in fletcher_4_incremental_native()
215 for (; ip < ipend; ip++) { in fletcher_4_incremental_native()
216 a += ip[0]; in fletcher_4_incremental_native()
229 const uint32_t *ip = buf; in fletcher_4_incremental_byteswap() local
230 const uint32_t *ipend = ip + (size / sizeof (uint32_t)); in fletcher_4_incremental_byteswap()
238 for (; ip < ipend; ip++) { in fletcher_4_incremental_byteswap()
239 a += BSWAP_32(ip[0]); in fletcher_4_incremental_byteswap()