Lines Matching refs:zcp
135 fletcher_2_native(const void *buf, uint64_t size, zio_cksum_t *zcp) in fletcher_2_native() argument
148 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_native()
152 fletcher_2_byteswap(const void *buf, uint64_t size, zio_cksum_t *zcp) in fletcher_2_byteswap() argument
165 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_byteswap()
169 fletcher_4_native(const void *buf, uint64_t size, zio_cksum_t *zcp) in fletcher_4_native() argument
182 ZIO_SET_CHECKSUM(zcp, a, b, c, d); in fletcher_4_native()
186 fletcher_4_byteswap(const void *buf, uint64_t size, zio_cksum_t *zcp) in fletcher_4_byteswap() argument
199 ZIO_SET_CHECKSUM(zcp, a, b, c, d); in fletcher_4_byteswap()
204 zio_cksum_t *zcp) in fletcher_4_incremental_native() argument
210 a = zcp->zc_word[0]; in fletcher_4_incremental_native()
211 b = zcp->zc_word[1]; in fletcher_4_incremental_native()
212 c = zcp->zc_word[2]; in fletcher_4_incremental_native()
213 d = zcp->zc_word[3]; in fletcher_4_incremental_native()
222 ZIO_SET_CHECKSUM(zcp, a, b, c, d); in fletcher_4_incremental_native()
227 zio_cksum_t *zcp) in fletcher_4_incremental_byteswap() argument
233 a = zcp->zc_word[0]; in fletcher_4_incremental_byteswap()
234 b = zcp->zc_word[1]; in fletcher_4_incremental_byteswap()
235 c = zcp->zc_word[2]; in fletcher_4_incremental_byteswap()
236 d = zcp->zc_word[3]; in fletcher_4_incremental_byteswap()
245 ZIO_SET_CHECKSUM(zcp, a, b, c, d); in fletcher_4_incremental_byteswap()