Lines Matching refs:uncompLen
508 size_t uncompLen = get4LE(ptr + kCDEUncompLen); in getEntryInfo() local
510 *pUncompLen = uncompLen; in getEntryInfo()
606 (off64_t)(dataOffset + uncompLen) > cdOffset) in getEntryInfo()
609 (long) dataOffset, (ZD_TYPE) uncompLen, (long) cdOffset); in getEntryInfo()
681 size_t uncompLen, compLen; in uncompressEntry() local
685 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL); in uncompressEntry()
711 memcpy(buffer, ptr, uncompLen); in uncompressEntry()
713 if (!inflateBuffer(buffer, ptr, uncompLen, compLen)) in uncompressEntry()
741 size_t uncompLen, compLen; in uncompressEntry() local
745 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL); in uncompressEntry()
755 ssize_t actual = write(fd, ptr, uncompLen); in uncompressEntry()
759 } else if ((size_t) actual != uncompLen) { in uncompressEntry()
761 (ZD_TYPE) actual, (ZD_TYPE) uncompLen); in uncompressEntry()
767 if (!inflateBuffer(fd, ptr, uncompLen, compLen)) in uncompressEntry()
783 size_t uncompLen, size_t compLen) in inflateBuffer() argument
799 zstream.avail_out = uncompLen; in inflateBuffer()
829 if (zstream.total_out != uncompLen) { in inflateBuffer()
831 zstream.total_out, (ZD_TYPE) uncompLen); in inflateBuffer()
848 size_t uncompLen, size_t compLen) in inflateBuffer() argument
918 if (zstream.total_out != uncompLen) { in inflateBuffer()
920 zstream.total_out, (ZD_TYPE) uncompLen); in inflateBuffer()