HomeSort by relevance Sort by last modified time
    Searched defs:windowBits (Results 1 - 3 of 3) sorted by null

  /bootable/recovery/applypatch/
imgpatch.c 119 int windowBits = Read4(deflate_header+48);
194 ret = deflateInit2(&strm, level, method, windowBits, memLevel, strategy);
imgdiff.c 80 * windowBits (4)
94 * windowBits (4)
149 int level, method, windowBits, memLevel, strategy;
526 chunk->level, chunk->method, chunk->windowBits,
537 ret = deflateInit2(&strm, chunk->level, chunk->method, chunk->windowBits,
562 * we started with. Sets the level, method, windowBits, memLevel, and
578 chunk->windowBits = -15; // 32kb window; negative to indicate a raw stream.
984 Write4(tgt_chunks[i].windowBits, f);
  /libcore/luni/src/main/native/
java_util_zip_Deflater.cpp 48 * See zlib.h for documentation of the deflateInit2 windowBits and memLevel parameters.
51 * (1 << (windowBits+2)) + (1 << (memLevel+9))
52 * that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
55 int windowBits = noHeader ? -DEF_WBITS : DEF_WBITS;
57 int err = deflateInit2(&jstream->stream, level, Z_DEFLATED, windowBits, memLevel, strategy);

Completed in 126 milliseconds