Lines Matching +full:64 +full:bit
9 * bit first (BE).
34 * R1 = x4*128+64 mod P(x)
36 * R3 = x128+64 mod P(x)
41 * Barret reduction constant, u, is defined as floor(x**64 / P(x)).
72 * @size: Size of the buffer, must be 64 bytes or greater.
89 /* Load a 64-byte data chunk and XOR with CRC */ in crc32_be_vgfm_16()
92 buf += 64; in crc32_be_vgfm_16()
93 size -= 64; in crc32_be_vgfm_16()
95 while (size >= 64) { in crc32_be_vgfm_16()
96 /* Load the next 64-byte data chunk into V5 to V8 */ in crc32_be_vgfm_16()
110 buf += 64; in crc32_be_vgfm_16()
111 size -= 64; in crc32_be_vgfm_16()
114 /* Fold V1 to V4 into a single 128-bit value in V1 */ in crc32_be_vgfm_16()
127 * The R5 constant is used to fold a 128-bit value into an 96-bit value in crc32_be_vgfm_16()
128 * that is XORed with the next 96-bit input data chunk. To use a single in crc32_be_vgfm_16()
129 * VGFMG instruction, multiply the rightmost 64-bit with x^32 (1<<32) to in crc32_be_vgfm_16()
130 * form an intermediate 96-bit value (with appended zeros) which is then in crc32_be_vgfm_16()
136 * Further reduce the remaining 96-bit value to a 64-bit value using a in crc32_be_vgfm_16()
139 * doubleword with R6. The result is a 64-bit value and is subject to in crc32_be_vgfm_16()