Home | History | Annotate | Download | only in utils

Lines Matching defs:uncompLen

508     size_t uncompLen = get4LE(ptr + kCDEUncompLen);
510 *pUncompLen = uncompLen;
522 * Note we don't verify compLen/uncompLen if they don't request the
606 (off64_t)(dataOffset + uncompLen) > cdOffset)
609 (long) dataOffset, (ZD_TYPE) uncompLen, (long) cdOffset);
681 size_t uncompLen, compLen;
685 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL);
711 memcpy(buffer, ptr, uncompLen);
713 if (!inflateBuffer(buffer, ptr, uncompLen, compLen))
741 size_t uncompLen, compLen;
745 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL);
755 ssize_t actual = write(fd, ptr, uncompLen);
759 } else if ((size_t) actual != uncompLen) {
761 (ZD_TYPE) actual, (ZD_TYPE) uncompLen);
767 if (!inflateBuffer(fd, ptr, uncompLen, compLen))
783 size_t uncompLen, size_t compLen)
799 zstream.avail_out = uncompLen;
829 if (zstream.total_out != uncompLen) {
831 zstream.total_out, (ZD_TYPE) uncompLen);
848 size_t uncompLen, size_t compLen)
918 if (zstream.total_out != uncompLen) {
920 zstream.total_out, (ZD_TYPE) uncompLen);