Lines Matching refs:len2
71 local uLong crc32_combine_(uLong crc1, uLong crc2, z_off64_t len2);
370 local uLong crc32_combine_(crc1, crc2, len2)
373 z_off64_t len2;
381 if (len2 <= 0)
398 /* apply len2 zeros to crc1 (first square will put the operator for one
401 /* apply zeros operator for this bit of len2 */
403 if (len2 & 1)
405 len2 >>= 1;
408 if (len2 == 0)
413 if (len2 & 1)
415 len2 >>= 1;
418 } while (len2 != 0);
426 uLong ZEXPORT crc32_combine(crc1, crc2, len2)
429 z_off_t len2;
431 return crc32_combine_(crc1, crc2, len2);
434 uLong ZEXPORT crc32_combine64(crc1, crc2, len2)
437 z_off64_t len2;
439 return crc32_combine_(crc1, crc2, len2);