HomeSort by relevance Sort by last modified time
    Searched full:deflate (Results 101 - 125 of 304) sorted by null

1 2 3 45 6 7 8 91011>>

  /system/extras/tests/bionic/libc/other/
test_zlib.c 53 /* allocate deflate state */
71 /* run deflate() on input until output buffer not full, finish
76 ret = deflate(&strm, flush); /* no bad return value */
111 /* decompress until deflate stream ends or end of file */
  /external/zlib/win32/
README-WIN32.txt 6 http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format)
67 The deflate format used by zlib was defined by Phil Katz. The deflate and
Makefile.emx 36 OBJS = adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o \
  /external/zlib/
zlib.3 100 http://www.ietf.org/rfc/rfc1951.txt (for the deflate compressed data format)
138 The deflate format used by
141 The deflate and
ChangeLog 201 - Remove compressBound() call in deflate.c to avoid linking compress.o
218 - Change NULL's to Z_NULL's in deflate.c and in comments in zlib.h
260 - Remove extraneous #define MIN_LOOKAHEAD in deflate.c (in deflate.h)
261 - Clear bytes after deflate lookahead to avoid use of uninitialized data
265 - Allow Z_BLOCK for deflate() to force a new block
309 - Set extra flags in gzip header in gzopen() like deflate() does
364 - Avoid some Visual C warnings in deflate.c
397 - Remove USE_DICT_HEAD in deflate.c (would mess up inflate if used)
402 - Fix compilation of deflate.c when both ASMV and FASTEST [Oberhumer
    [all...]
gzwrite.c 33 /* allocate deflate memory, set up for gzip compression */
57 flush is assumed to be a valid deflate() flush value. If flush is Z_FINISH,
58 then the deflate() state is reset to start a new gzip stream. */
71 /* run deflate() on provided input until it produces no more output */
93 ret = deflate(strm, flush);
96 "internal error: deflate stream corrupt");
102 /* if that completed a deflate stream, allow another to start */
  /libcore/luni/src/main/native/
java_util_zip_Deflater.cpp 50 * zconf.h says the "requirements for deflate are (in bytes):
81 int err = deflate(&stream->stream, flushStyle);
91 // zero) ... Z_BUF_ERROR is not fatal, and deflate() can be called again with more
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ppp-comp.h 56 #define DO_DEFLATE 1 /* by default, include Deflate */
180 * Definitions for Deflate.
183 #define CI_DEFLATE 26 /* config option for Deflate */
  /external/valgrind/main/
xfree-4.supp 338 fun:deflate
344 fun:deflate
353 fun:deflate
359 fun:deflate
368 fun:deflate
374 fun:deflate
  /external/zlib/contrib/ada/
zlib-thin.ads 125 function Deflate (strm : Z_Streamp; flush : Int) return Int;
388 pragma Import (C, Deflate, "deflate");
442 -- ZLib-Ada is symmetric regarding deflate/inflate data transformation
444 -- deflate/inflate transformation based on the regular Deflate/Inflate
  /external/zlib/contrib/delphi/
ZLib.pas 203 {$L deflate.obj}
240 // deflate compresses data
243 function deflate(var strm: TZStreamRec; flush: Integer): Integer; external; function
304 while CCheck(deflate(strm, Z_FINISH)) <> Z_STREAM_END do
424 while (CCheck(deflate(FZRec, Z_FINISH)) <> Z_STREAM_END)
451 CCheck(deflate(FZRec, 0));
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterOutputStreamTest.java 173 int length1 = defaultDeflater.deflate(compressedBytes);
179 int length2 = bestDeflater.deflate(compressedBytes,length1,compressedBytes.length-length1);
389 return deflater.deflate(compressedBytes);
  /external/ppp/pppd/include/net/
ppp-comp.h 49 #define DO_DEFLATE 1 /* by default, include Deflate */
150 * Definitions for Deflate.
152 #define CI_DEFLATE 26 /* config option for Deflate */
  /external/zlib/contrib/pascal/
zlibpas.pas 85 function deflate(var strm: z_stream; flush: Integer): Integer; function
148 {$L deflate.obj}
162 function deflate; external; function
  /external/libpng/
png.5 21 .IR libpng(3) ", " zlib(3) ", " deflate(5) ", and " zlib(5)
  /external/zlib/contrib/vstudio/vc10/
testzlib.vcxproj.filters 27 <ClCompile Include="..\..\..\deflate.c">
zlibstat.vcxproj.filters 18 <ClCompile Include="..\..\..\deflate.c">
zlibvc.def 10 deflate @4
  /external/zlib/contrib/vstudio/vc9/
zlibvc.def 10 deflate @4
  /external/zlib/msdos/
Makefile.emx 37 uncompr.o deflate.o trees.o zutil.o inflate.o infback.o inftrees.o inffast.o
  /frameworks/base/libs/utils/
ZipUtils.cpp 36 * Utility function that expands zip/gzip "deflate" compressed data
39 * "fd" is an open file positioned at the start of the "deflate" data
144 * Utility function that expands zip/gzip "deflate" compressed data
151 * "fp" is an open file positioned at the start of the "deflate" data
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterTest.java 60 int lastDeflated = deflater.deflate(compressed, totalDeflated,
  /external/zlib/contrib/puff/
puff.c 8 * deflate format. It is not written for speed but rather simplicity. As a
10 * important than speed, such as bootstrap applications. For typical deflate
25 * code is meant to supplement RFC 1951, which formally describes the deflate
28 * http://www.zlib.org/rfc-deflate.html
82 * they are fixed by the deflate format.
222 * in the deflate format. See the format notes for fixed() and dynamic().
321 * codes and any code with a single symbol which in deflate is coded as one
393 * base value 227 plus the maximum extra value of 31. While a good deflate
567 * - The codes used by the deflate format are "canonical", which means that
579 * deflate format to represent a zero-length code
    [all...]
  /external/protobuf/src/google/protobuf/io/
gzip_stream.h 59 // zlib will autodetect gzip header or deflate stream
198 int Deflate(int flush);
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 64 Read deflate blocks:
68 Read deflate codes:

Completed in 875 milliseconds

1 2 3 45 6 7 8 91011>>