4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #pragma ident "%Z%%M% %I% %E% SMI"
28 #include <sys/types.h>
29 #include <sys/sysmacros.h>
30 #include <sys/byteorder.h>
34 fletcher_2_native(const void *buf
, uint64_t size
, zio_cksum_t
*zcp
)
36 const uint64_t *ip
= buf
;
37 const uint64_t *ipend
= ip
+ (size
/ sizeof (uint64_t));
38 uint64_t a0
, b0
, a1
, b1
;
40 for (a0
= b0
= a1
= b1
= 0; ip
< ipend
; ip
+= 2) {
47 ZIO_SET_CHECKSUM(zcp
, a0
, a1
, b0
, b1
);
51 fletcher_2_byteswap(const void *buf
, uint64_t size
, zio_cksum_t
*zcp
)
53 const uint64_t *ip
= buf
;
54 const uint64_t *ipend
= ip
+ (size
/ sizeof (uint64_t));
55 uint64_t a0
, b0
, a1
, b1
;
57 for (a0
= b0
= a1
= b1
= 0; ip
< ipend
; ip
+= 2) {
58 a0
+= BSWAP_64(ip
[0]);
59 a1
+= BSWAP_64(ip
[1]);
64 ZIO_SET_CHECKSUM(zcp
, a0
, a1
, b0
, b1
);
68 fletcher_4_native(const void *buf
, uint64_t size
, zio_cksum_t
*zcp
)
70 const uint32_t *ip
= buf
;
71 const uint32_t *ipend
= ip
+ (size
/ sizeof (uint32_t));
74 for (a
= b
= c
= d
= 0; ip
< ipend
; ip
++) {
81 ZIO_SET_CHECKSUM(zcp
, a
, b
, c
, d
);
85 fletcher_4_byteswap(const void *buf
, uint64_t size
, zio_cksum_t
*zcp
)
87 const uint32_t *ip
= buf
;
88 const uint32_t *ipend
= ip
+ (size
/ sizeof (uint32_t));
91 for (a
= b
= c
= d
= 0; ip
< ipend
; ip
++) {
98 ZIO_SET_CHECKSUM(zcp
, a
, b
, c
, d
);
102 fletcher_4_incremental_native(const void *buf
, uint64_t size
,
105 const uint32_t *ip
= buf
;
106 const uint32_t *ipend
= ip
+ (size
/ sizeof (uint32_t));
114 for (; ip
< ipend
; ip
++) {
121 ZIO_SET_CHECKSUM(zcp
, a
, b
, c
, d
);
125 fletcher_4_incremental_byteswap(const void *buf
, uint64_t size
,
128 const uint32_t *ip
= buf
;
129 const uint32_t *ipend
= ip
+ (size
/ sizeof (uint32_t));
137 for (; ip
< ipend
; ip
++) {
138 a
+= BSWAP_32(ip
[0]);
144 ZIO_SET_CHECKSUM(zcp
, a
, b
, c
, d
);