Home | History | Annotate | Download | only in src

Lines Matching defs:odd

363     unsigned long odd[GF2_DIM];     /* odd-power-of-two zeros operator */
369 /* put operator for one zero bit in odd */
370 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
373 odd[n] = row;
378 gf2_matrix_square(even, odd);
380 /* put operator for four zero bits in odd */
381 gf2_matrix_square(odd, even);
387 gf2_matrix_square(even, odd);
396 /* another iteration of the loop with odd and even swapped */
397 gf2_matrix_square(odd, even);
399 crc1 = gf2_matrix_times(odd, crc1);