HomeSort by relevance Sort by last modified time
    Searched full:deflate (Results 51 - 75 of 218) sorted by null

1 23 4 5 6 7 8 9

  /external/zlib/msdos/
Makefile.msc 40 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infback.obj
56 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
71 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
  /external/zlib/win32/
Makefile.msc 36 OBJS = adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infback.obj \
78 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
93 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
Makefile.gcc 56 OBJS = adler32.o compress.o crc32.o deflate.o gzio.o infback.o \
131 deflate.o: deflate.h zutil.h zlib.h zconf.h
139 trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
  /external/zlib/as400/
bndsrc 28 /* *MODULE DEFLATE ZLIB 01/02/01 00:15:09 */
31 EXPORT SYMBOL("deflate")
100 /* *MODULE DEFLATE ZLIB 01/02/01 00:15:09 */
readme.txt 72 deflate.c DEFLATE C ZLIB - Compress data using the deflation algorithm
83 deflate.h DEFLATE C ZLIB - Internal compression state
compile.clp 57 '/DEFLATE) SRCFILE(' *TCAT +
115 &MODLIB/CRC32 &MODLIB/DEFLATE +
  /external/ipsec-tools/src/racoon/samples/
racoon.conf.sample-gssapi 42 compression_algorithm deflate;
racoon.conf.sample-plainrsa 45 compression_algorithm deflate;
racoon.conf.sample 60 compression_algorithm deflate ;
  /external/libpng/contrib/pngminim/encoder/
makefile 17 ZOBJS = adler32$(O) compress$(O) crc32$(O) deflate$(O) \
makefile.std 17 ZOBJS = adler32$(O) compress$(O) crc32$(O) deflate$(O) gzio$(O) \
  /external/zlib/
Android.mk 14 deflate.c \
ChangeLog 11 - Avoid some Visual C warnings in deflate.c
44 - Remove USE_DICT_HEAD in deflate.c (would mess up inflate if used)
49 - Fix compilation of deflate.c when both ASMV and FASTEST [Oberhumer]
55 - Replace structure assignments in deflate.c and inflate.c with zmemcpy to
65 - Add FAQ entry and comments in deflate.c on uninitialized memory access
72 - Use OS_CODE in deflate() default gzip header
92 - Add comment in zlib.h for Z_NO_FLUSH parameter to deflate()
253 - Change NO_GUNZIP compile option to NO_GZIP to cover deflate as well
279 - More typecasting in deflate.c to avoid warnings
285 - Update RFC URL in deflate.c and algorithm.txt [Mai
    [all...]
algorithm.txt 1 1. Compression algorithm (deflate)
17 available memory). A block is terminated when deflate() determines that
34 parameter of deflateInit). So deflate() does not always find the longest
37 deflate() also defers the selection of matches with a lazy evaluation
38 mechanism. After a match of length N has been found, deflate() searches for
46 the current match is long enough, deflate() reduces the search for a longer
48 important than speed, deflate() attempts a complete second search even if
120 At least for deflate's output that generates new trees every several 10's of
208 ``DEFLATE Compressed Data Format Specification'' available in
Makefile.in 49 OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
144 deflate.o: deflate.h zutil.h zlib.h zconf.h
152 trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
README 6 http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format)
64 - For 64-bit Irix, deflate.c must be compiled without any optimization. With
88 The deflate format used by zlib was defined by Phil Katz. The deflate
  /external/zlib/contrib/vstudio/vc7/
zlibvc.def 10 deflate @4
  /external/zlib/contrib/vstudio/vc8/
zlibvc.def 10 deflate @4
  /frameworks/base/tests/CoreTests/android/core/
DeflateTest.java 39 * Simple inflate/deflate test, taken from the reference docs for the
53 int compressedDataLength = compresser.deflate(output);
153 // deflate to current position in output buffer
156 compCount = deflater.deflate(outBuf, outPosn, LOCAL_BUF_SIZE);
  /bootable/recovery/applypatch/
imgpatch.c 104 // deflate chunks have an additional 60 bytes in their chunk header.
108 printf("failed to read chunk %d deflate header data\n", i);
177 // reuse that memory to receive the output of deflate.
188 // now the deflate stream
198 ret = deflate(&strm, Z_FINISH);
imgdiff.c 35 * image must have been generated using the same deflate encoder that
54 * magic number; 08 specifies the "deflate" encoding [the only encoding
67 * chunk type (4) [CHUNK_{NORMAL, GZIP, DEFLATE, RAW}]
133 unsigned char* data; // data to be patched (uncompressed, for deflate chunks)
142 // original (compressed) deflate data
148 // deflate encoder parameters
238 if (method != 8) { // 8 == deflate
315 // -15 means we are decoding a 'raw' deflate stream; zlib will
337 // next deflate section.
400 p[2] == 0x08 && // deflate compressio
    [all...]
  /external/zlib/examples/
gzappend.c 53 the start of the final deflate block. Also whether using Z_BLOCK or not,
66 data is saved along with the number of unused bits to initialize deflate.
68 A deflate process is initialized, using the last 32K of the uncompressed
71 the dictionary. The deflate output bit buffer is also initialized with the
72 last bits from the original deflate stream. From here on, the data to
73 append is simply compressed using deflate, and written to the gzip file.
253 /* decompress gzip file "name", return strm with a deflate stream ready to
255 descriptor pointing to where to write the compressed data -- the deflate
287 /* decompress the deflate stream, saving append information */
340 /* check gzip trailer and save total for deflate */
    [all...]
  /dalvik/libcore/archive/src/main/java/java/util/zip/
Deflater.java 22 * This class compresses data using the <i>DEFLATE</i> algorithm (see <a
114 // A stub buffer used when deflate() called while inputBuffer has not been
188 * @see #deflate(byte[], int, int)
190 public int deflate(byte[] buf) { method in class:Deflater
191 return deflate(buf, 0, buf.length);
206 public synchronized int deflate(byte[] buf, int off, int nbytes) { method in class:Deflater
223 * and additional calls to {@link #deflate} to be made.
227 public synchronized int deflate(byte[] buf, int off, int nbytes, int flush) { method in class:Deflater
  /external/zlib/contrib/delphi/
readme.txt 50 - The ability to read and write raw deflate streams, without the
51 zlib stream header and trailer. Raw deflate streams are used
  /external/kernel-headers/original/linux/
zconf.h 11 /* The memory requirements for deflate are (in bytes):

Completed in 161 milliseconds

1 23 4 5 6 7 8 9