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

Lines Matching refs:len2

53 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
355 local uLong crc32_combine_(crc1, crc2, len2)
358 z_off64_t len2;
366 if (len2 <= 0)
383 /* apply len2 zeros to crc1 (first square will put the operator for one
386 /* apply zeros operator for this bit of len2 */
388 if (len2 & 1)
390 len2 >>= 1;
393 if (len2 == 0)
398 if (len2 & 1)
400 len2 >>= 1;
403 } while (len2 != 0);
411 uLong ZEXPORT crc32_combine(crc1, crc2, len2)
414 z_off_t len2;
416 return crc32_combine_(crc1, crc2, len2);
419 uLong ZEXPORT crc32_combine64(crc1, crc2, len2)
422 z_off64_t len2;
424 return crc32_combine_(crc1, crc2, len2);