Home | History | Annotate | Download | only in zlib

Lines Matching defs:odd

380     unsigned long odd[GF2_DIM];     /* odd-power-of-two zeros operator */
386 /* put operator for one zero bit in odd */
387 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
390 odd[n] = row;
395 gf2_matrix_square(even, odd);
397 /* put operator for four zero bits in odd */
398 gf2_matrix_square(odd, even);
404 gf2_matrix_square(even, odd);
413 /* another iteration of the loop with odd and even swapped */
414 gf2_matrix_square(odd, even);
416 crc1 = gf2_matrix_times(odd, crc1);