Home | History | Annotate | Download | only in zlib-1.2.3

Lines Matching refs:crc1

370 uLong ZEXPORT crc32_combine(crc1, crc2, len2)
371 uLong crc1;
382 return crc1;
398 /* apply len2 zeros to crc1 (first square will put the operator for one
404 crc1 = gf2_matrix_times(even, crc1);
414 crc1 = gf2_matrix_times(odd, crc1);
421 crc1 ^= crc2;
422 return crc1;