Lines Matching +full:xor +full:- +full:v2
1 // SPDX-License-Identifier: GPL-2.0-only
4 * cleaned up code to current version of sparse and added the slicing-by-8
5 * algorithm to the closely similar existing slicing-by-4 algorithm.
10 * subsequently included in the kernel, thus was re-licensed under the
11 * GNU GPL v2.
17 * Some xor at the end with ~0. The generic crc32() function takes
18 * seed as an argument, and doesn't xor at the end. Then individual
20 * drivers/net/smc9194.c uses seed ~0, doesn't xor with ~0.
21 * fs/jffs2 uses seed 0, doesn't xor with ~0.
22 * fs/partitions/efi.c uses seed ~0, xor's with ~0.
37 while (len--) in crc32_le_base()
45 while (len--) in crc32_be_base()
53 while (len--) in crc32c_base()