Home | History | Annotate | Download | only in zlib

Lines Matching defs:odd

378     unsigned long odd[GF2_DIM];     /* odd-power-of-two zeros operator */

384 /* put operator for one zero bit in odd */
385 odd[0] = 0xedb88320L; /* CRC-32 polynomial */
388 odd[n] = row;
393 gf2_matrix_square(even, odd);
395 /* put operator for four zero bits in odd */
396 gf2_matrix_square(odd, even);
402 gf2_matrix_square(even, odd);
411 /* another iteration of the loop with odd and even swapped */
412 gf2_matrix_square(odd, even);
414 crc1 = gf2_matrix_times(odd, crc1);