Lines Matching +full:5 +full:- +full:6
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * include/asm-generic/xor.h
5 * Generic optimized RAID-5 checksumming functions.
21 p1[5] ^= p2[5]; in xor_8regs_2()
22 p1[6] ^= p2[6]; in xor_8regs_2()
26 } while (--lines > 0); in xor_8regs_2()
41 p1[5] ^= p2[5] ^ p3[5]; in xor_8regs_3()
42 p1[6] ^= p2[6] ^ p3[6]; in xor_8regs_3()
47 } while (--lines > 0); in xor_8regs_3()
62 p1[5] ^= p2[5] ^ p3[5] ^ p4[5]; in xor_8regs_4()
63 p1[6] ^= p2[6] ^ p3[6] ^ p4[6]; in xor_8regs_4()
69 } while (--lines > 0); in xor_8regs_4()
84 p1[5] ^= p2[5] ^ p3[5] ^ p4[5] ^ p5[5]; in xor_8regs_5()
85 p1[6] ^= p2[6] ^ p3[6] ^ p4[6] ^ p5[6]; in xor_8regs_5()
92 } while (--lines > 0); in xor_8regs_5()
107 d5 = p1[5]; in xor_32regs_2()
108 d6 = p1[6]; in xor_32regs_2()
115 d5 ^= p2[5]; in xor_32regs_2()
116 d6 ^= p2[6]; in xor_32regs_2()
123 p1[5] = d5; in xor_32regs_2()
124 p1[6] = d6; in xor_32regs_2()
128 } while (--lines > 0); in xor_32regs_2()
144 d5 = p1[5]; in xor_32regs_3()
145 d6 = p1[6]; in xor_32regs_3()
152 d5 ^= p2[5]; in xor_32regs_3()
153 d6 ^= p2[6]; in xor_32regs_3()
160 d5 ^= p3[5]; in xor_32regs_3()
161 d6 ^= p3[6]; in xor_32regs_3()
168 p1[5] = d5; in xor_32regs_3()
169 p1[6] = d6; in xor_32regs_3()
174 } while (--lines > 0); in xor_32regs_3()
190 d5 = p1[5]; in xor_32regs_4()
191 d6 = p1[6]; in xor_32regs_4()
198 d5 ^= p2[5]; in xor_32regs_4()
199 d6 ^= p2[6]; in xor_32regs_4()
206 d5 ^= p3[5]; in xor_32regs_4()
207 d6 ^= p3[6]; in xor_32regs_4()
214 d5 ^= p4[5]; in xor_32regs_4()
215 d6 ^= p4[6]; in xor_32regs_4()
222 p1[5] = d5; in xor_32regs_4()
223 p1[6] = d6; in xor_32regs_4()
229 } while (--lines > 0); in xor_32regs_4()
245 d5 = p1[5]; in xor_32regs_5()
246 d6 = p1[6]; in xor_32regs_5()
253 d5 ^= p2[5]; in xor_32regs_5()
254 d6 ^= p2[6]; in xor_32regs_5()
261 d5 ^= p3[5]; in xor_32regs_5()
262 d6 ^= p3[6]; in xor_32regs_5()
269 d5 ^= p4[5]; in xor_32regs_5()
270 d6 ^= p4[6]; in xor_32regs_5()
277 d5 ^= p5[5]; in xor_32regs_5()
278 d6 ^= p5[6]; in xor_32regs_5()
285 p1[5] = d5; in xor_32regs_5()
286 p1[6] = d6; in xor_32regs_5()
293 } while (--lines > 0); in xor_32regs_5()
299 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_8regs_p_2()
312 p1[5] ^= p2[5]; in xor_8regs_p_2()
313 p1[6] ^= p2[6]; in xor_8regs_p_2()
317 } while (--lines > 0); in xor_8regs_p_2()
326 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_8regs_p_3()
341 p1[5] ^= p2[5] ^ p3[5]; in xor_8regs_p_3()
342 p1[6] ^= p2[6] ^ p3[6]; in xor_8regs_p_3()
347 } while (--lines > 0); in xor_8regs_p_3()
356 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_8regs_p_4()
374 p1[5] ^= p2[5] ^ p3[5] ^ p4[5]; in xor_8regs_p_4()
375 p1[6] ^= p2[6] ^ p3[6] ^ p4[6]; in xor_8regs_p_4()
381 } while (--lines > 0); in xor_8regs_p_4()
390 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_8regs_p_5()
410 p1[5] ^= p2[5] ^ p3[5] ^ p4[5] ^ p5[5]; in xor_8regs_p_5()
411 p1[6] ^= p2[6] ^ p3[6] ^ p4[6] ^ p5[6]; in xor_8regs_p_5()
418 } while (--lines > 0); in xor_8regs_p_5()
426 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_32regs_p_2()
442 d5 = p1[5]; in xor_32regs_p_2()
443 d6 = p1[6]; in xor_32regs_p_2()
450 d5 ^= p2[5]; in xor_32regs_p_2()
451 d6 ^= p2[6]; in xor_32regs_p_2()
458 p1[5] = d5; in xor_32regs_p_2()
459 p1[6] = d6; in xor_32regs_p_2()
463 } while (--lines > 0); in xor_32regs_p_2()
472 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_32regs_p_3()
490 d5 = p1[5]; in xor_32regs_p_3()
491 d6 = p1[6]; in xor_32regs_p_3()
498 d5 ^= p2[5]; in xor_32regs_p_3()
499 d6 ^= p2[6]; in xor_32regs_p_3()
506 d5 ^= p3[5]; in xor_32regs_p_3()
507 d6 ^= p3[6]; in xor_32regs_p_3()
514 p1[5] = d5; in xor_32regs_p_3()
515 p1[6] = d6; in xor_32regs_p_3()
520 } while (--lines > 0); in xor_32regs_p_3()
529 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_32regs_p_4()
549 d5 = p1[5]; in xor_32regs_p_4()
550 d6 = p1[6]; in xor_32regs_p_4()
557 d5 ^= p2[5]; in xor_32regs_p_4()
558 d6 ^= p2[6]; in xor_32regs_p_4()
565 d5 ^= p3[5]; in xor_32regs_p_4()
566 d6 ^= p3[6]; in xor_32regs_p_4()
573 d5 ^= p4[5]; in xor_32regs_p_4()
574 d6 ^= p4[6]; in xor_32regs_p_4()
581 p1[5] = d5; in xor_32regs_p_4()
582 p1[6] = d6; in xor_32regs_p_4()
588 } while (--lines > 0); in xor_32regs_p_4()
597 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_32regs_p_5()
619 d5 = p1[5]; in xor_32regs_p_5()
620 d6 = p1[6]; in xor_32regs_p_5()
627 d5 ^= p2[5]; in xor_32regs_p_5()
628 d6 ^= p2[6]; in xor_32regs_p_5()
635 d5 ^= p3[5]; in xor_32regs_p_5()
636 d6 ^= p3[6]; in xor_32regs_p_5()
643 d5 ^= p4[5]; in xor_32regs_p_5()
644 d6 ^= p4[6]; in xor_32regs_p_5()
651 d5 ^= p5[5]; in xor_32regs_p_5()
652 d6 ^= p5[6]; in xor_32regs_p_5()
659 p1[5] = d5; in xor_32regs_p_5()
660 p1[6] = d6; in xor_32regs_p_5()
667 } while (--lines > 0); in xor_32regs_p_5()