Lines Matching full:xor
12 * Some xor at the end with ~0. The generic crc32() function takes
13 * seed as an argument, and doesn't xor at the end. Then individual
15 * drivers/net/smc9194.c uses seed ~0, doesn't xor with ~0.
16 * fs/jffs2 uses seed 0, doesn't xor with ~0.
17 * fs/partitions/efi.c uses seed ~0, xor's with ~0.
103 /* load data 32 bits wide, xor data 32 bits wide. */ in crc32_le()
201 /* load data 32 bits wide, xor data 32 bits wide. */ in crc32_be()
264 * subtract, we just xor. Thus, we tend to get a bit sloppy about
286 * XOR cancel, it's just a copy of bit 32 of the remainder.
346 * If the input is a multiple of 32 bits, you can even XOR in a 32-bit
503 printf("CRC XOR fail: 0x%08x != 0x%08x ^ 0x%08x\n", in main()