Home | History | Annotate | Download | only in ijar

Lines Matching defs:compressed

185   // cursor to the first byte after the compressed data.
189 int SkipFile(const bool compressed);
192 int ProcessFile(const bool compressed);
288 // Write ZIP file header in the output. Since the compressed size is not
290 // to "compressed size" in the file header that should be passed to
294 // Fill in the "compressed size" and "uncompressed size" fields in a local
308 size_t compressed, uncompressed;
310 if (!ProcessCentralDirEntry(central_dir_current_, &compressed, &uncompressed,
326 if (ProcessLocalFileEntry(compressed, uncompressed) < 0) {
379 // If the zip is compressed, compressed and uncompressed size members are
412 // next 12 bytes (for CRC, compressed/uncompressed size), otherwise skip
430 int InputZipFile::SkipFile(const bool compressed) {
431 if (!compressed) {
435 return error("compressed size != uncompressed size, although the file "
520 int InputZipFile::ProcessFile(const bool compressed) {
522 if (compressed) {
531 return error("compressed size != uncompressed size, although the file "
547 // - compressed size
564 p += 16; // skip to 'compressed size' field
587 // the difference between the compressed and uncompressed sizes to the size
617 // difference between the compressed and uncompressed sizes.
872 // It will compress buf (of size length) unless the compressed size is bigger