Lines Matching +full:23 +full:- +full:64
1 // SPDX-License-Identifier: GPL-2.0
9 * and adds in "sum" (32-bit). If copy is true copies to dst.
11 * Returns a 32-bit number suitable for feeding into itself
17 * It's best to have src and dst aligned on a 64-bit boundary.
33 while (len >= 64) { in csum_copy()
34 fpu_vlm(20, 23, src); in csum_copy()
36 fpu_vstm(20, 23, dst); in csum_copy()
37 dst += 64; in csum_copy()
42 fpu_vcksm(19, 23, 19); in csum_copy()
43 src += 64; in csum_copy()
44 len -= 64; in csum_copy()
55 len -= 32; in csum_copy()
65 len -= 16; in csum_copy()
68 fpu_vll(20, len - 1, src); in csum_copy()
70 fpu_vstl(20, len - 1, dst); in csum_copy()