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.
22 p1[5] ^= p2[5]; in xor_8regs_2()
23 p1[6] ^= p2[6]; in xor_8regs_2()
27 } while (--lines > 0); in xor_8regs_2()
43 p1[5] ^= p2[5] ^ p3[5]; in xor_8regs_3()
44 p1[6] ^= p2[6] ^ p3[6]; in xor_8regs_3()
49 } while (--lines > 0); in xor_8regs_3()
66 p1[5] ^= p2[5] ^ p3[5] ^ p4[5]; in xor_8regs_4()
67 p1[6] ^= p2[6] ^ p3[6] ^ p4[6]; in xor_8regs_4()
73 } while (--lines > 0); in xor_8regs_4()
91 p1[5] ^= p2[5] ^ p3[5] ^ p4[5] ^ p5[5]; in xor_8regs_5()
92 p1[6] ^= p2[6] ^ p3[6] ^ p4[6] ^ p5[6]; in xor_8regs_5()
99 } while (--lines > 0); in xor_8regs_5()
115 d5 = p1[5]; in xor_32regs_2()
116 d6 = p1[6]; in xor_32regs_2()
123 d5 ^= p2[5]; in xor_32regs_2()
124 d6 ^= p2[6]; in xor_32regs_2()
131 p1[5] = d5; in xor_32regs_2()
132 p1[6] = d6; in xor_32regs_2()
136 } while (--lines > 0); in xor_32regs_2()
153 d5 = p1[5]; in xor_32regs_3()
154 d6 = p1[6]; in xor_32regs_3()
161 d5 ^= p2[5]; in xor_32regs_3()
162 d6 ^= p2[6]; in xor_32regs_3()
169 d5 ^= p3[5]; in xor_32regs_3()
170 d6 ^= p3[6]; in xor_32regs_3()
177 p1[5] = d5; in xor_32regs_3()
178 p1[6] = d6; in xor_32regs_3()
183 } while (--lines > 0); in xor_32regs_3()
201 d5 = p1[5]; in xor_32regs_4()
202 d6 = p1[6]; in xor_32regs_4()
209 d5 ^= p2[5]; in xor_32regs_4()
210 d6 ^= p2[6]; in xor_32regs_4()
217 d5 ^= p3[5]; in xor_32regs_4()
218 d6 ^= p3[6]; in xor_32regs_4()
225 d5 ^= p4[5]; in xor_32regs_4()
226 d6 ^= p4[6]; in xor_32regs_4()
233 p1[5] = d5; in xor_32regs_4()
234 p1[6] = d6; in xor_32regs_4()
240 } while (--lines > 0); in xor_32regs_4()
259 d5 = p1[5]; in xor_32regs_5()
260 d6 = p1[6]; in xor_32regs_5()
267 d5 ^= p2[5]; in xor_32regs_5()
268 d6 ^= p2[6]; in xor_32regs_5()
275 d5 ^= p3[5]; in xor_32regs_5()
276 d6 ^= p3[6]; in xor_32regs_5()
283 d5 ^= p4[5]; in xor_32regs_5()
284 d6 ^= p4[6]; in xor_32regs_5()
291 d5 ^= p5[5]; in xor_32regs_5()
292 d6 ^= p5[6]; in xor_32regs_5()
299 p1[5] = d5; in xor_32regs_5()
300 p1[6] = d6; in xor_32regs_5()
307 } while (--lines > 0); in xor_32regs_5()
314 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_8regs_p_2()
327 p1[5] ^= p2[5]; in xor_8regs_p_2()
328 p1[6] ^= p2[6]; in xor_8regs_p_2()
332 } while (--lines > 0); in xor_8regs_p_2()
342 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_8regs_p_3()
357 p1[5] ^= p2[5] ^ p3[5]; in xor_8regs_p_3()
358 p1[6] ^= p2[6] ^ p3[6]; in xor_8regs_p_3()
363 } while (--lines > 0); in xor_8regs_p_3()
374 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_8regs_p_4()
392 p1[5] ^= p2[5] ^ p3[5] ^ p4[5]; in xor_8regs_p_4()
393 p1[6] ^= p2[6] ^ p3[6] ^ p4[6]; in xor_8regs_p_4()
399 } while (--lines > 0); in xor_8regs_p_4()
411 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_8regs_p_5()
431 p1[5] ^= p2[5] ^ p3[5] ^ p4[5] ^ p5[5]; in xor_8regs_p_5()
432 p1[6] ^= p2[6] ^ p3[6] ^ p4[6] ^ p5[6]; in xor_8regs_p_5()
439 } while (--lines > 0); in xor_8regs_p_5()
448 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_32regs_p_2()
464 d5 = p1[5]; in xor_32regs_p_2()
465 d6 = p1[6]; in xor_32regs_p_2()
472 d5 ^= p2[5]; in xor_32regs_p_2()
473 d6 ^= p2[6]; in xor_32regs_p_2()
480 p1[5] = d5; in xor_32regs_p_2()
481 p1[6] = d6; in xor_32regs_p_2()
485 } while (--lines > 0); in xor_32regs_p_2()
495 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_32regs_p_3()
513 d5 = p1[5]; in xor_32regs_p_3()
514 d6 = p1[6]; in xor_32regs_p_3()
521 d5 ^= p2[5]; in xor_32regs_p_3()
522 d6 ^= p2[6]; in xor_32regs_p_3()
529 d5 ^= p3[5]; in xor_32regs_p_3()
530 d6 ^= p3[6]; in xor_32regs_p_3()
537 p1[5] = d5; in xor_32regs_p_3()
538 p1[6] = d6; in xor_32regs_p_3()
543 } while (--lines > 0); in xor_32regs_p_3()
554 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_32regs_p_4()
574 d5 = p1[5]; in xor_32regs_p_4()
575 d6 = p1[6]; in xor_32regs_p_4()
582 d5 ^= p2[5]; in xor_32regs_p_4()
583 d6 ^= p2[6]; in xor_32regs_p_4()
590 d5 ^= p3[5]; in xor_32regs_p_4()
591 d6 ^= p3[6]; in xor_32regs_p_4()
598 d5 ^= p4[5]; in xor_32regs_p_4()
599 d6 ^= p4[6]; in xor_32regs_p_4()
606 p1[5] = d5; in xor_32regs_p_4()
607 p1[6] = d6; in xor_32regs_p_4()
613 } while (--lines > 0); in xor_32regs_p_4()
625 long lines = bytes / (sizeof (long)) / 8 - 1; in xor_32regs_p_5()
647 d5 = p1[5]; in xor_32regs_p_5()
648 d6 = p1[6]; in xor_32regs_p_5()
655 d5 ^= p2[5]; in xor_32regs_p_5()
656 d6 ^= p2[6]; in xor_32regs_p_5()
663 d5 ^= p3[5]; in xor_32regs_p_5()
664 d6 ^= p3[6]; in xor_32regs_p_5()
671 d5 ^= p4[5]; in xor_32regs_p_5()
672 d6 ^= p4[6]; in xor_32regs_p_5()
679 d5 ^= p5[5]; in xor_32regs_p_5()
680 d6 ^= p5[6]; in xor_32regs_p_5()
687 p1[5] = d5; in xor_32regs_p_5()
688 p1[6] = d6; in xor_32regs_p_5()
695 } while (--lines > 0); in xor_32regs_p_5()