Lines Matching defs:odd
385 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */
391 /* put operator for one zero bit in odd */
392 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
395 odd[n] = row;
400 gf2_matrix_square(even, odd);
402 /* put operator for four zero bits in odd */
403 gf2_matrix_square(odd, even);
409 gf2_matrix_square(even, odd);
418 /* another iteration of the loop with odd and even swapped */
419 gf2_matrix_square(odd, even);
421 crc1 = gf2_matrix_times(odd, crc1);