Home
last modified time | relevance | path

Searched refs:deflate (Results 1 – 25 of 31) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dexample.c189 err = deflate(&c_stream, Z_NO_FLUSH);
195 err = deflate(&c_stream, Z_FINISH);
270 err = deflate(&c_stream, Z_NO_FLUSH);
281 err = deflate(&c_stream, Z_NO_FLUSH);
288 err = deflate(&c_stream, Z_NO_FLUSH);
291 err = deflate(&c_stream, Z_FINISH);
363 err = deflate(&c_stream, Z_FULL_FLUSH);
369 err = deflate(&c_stream, Z_FINISH);
451 err = deflate(&c_stream, Z_FINISH);
DFAQ35 5. deflate() or inflate() returns Z_BUF_ERROR.
40 Note that a Z_BUF_ERROR is not fatal--another call to deflate() or
129 18. Why does gzip give an error on a file I make with compress/deflate?
131 The compress and deflate functions produce data in the zlib format, which
147 You can request that deflate write the gzip format instead of the zlib
180 update the version strings in deflate.c and inftrees.c.
226 to understand the deflate format?
240 Yes. inflate() and deflate() will process any amount of data correctly.
241 Each call of inflate() or deflate() is limited to input and output chunks
246 inflate() or deflate(). The application can easily set up its own counters
[all …]
DMakefile49 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
DMakefile.in49 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
Dmake_vms.com75 $ CALL MAKE deflate.OBJ "CC ''CCOPT' deflate" -
76 deflate.c deflate.h zutil.h zlib.h zconf.h
88 trees.c deflate.h zutil.h zlib.h zconf.h
280 deflate.obj, trees.obj, zutil.obj, inflate.obj, \
309 deflate.obj : deflate.c deflate.h zutil.h zlib.h zconf.h
316 trees.obj : trees.c deflate.h zutil.h zlib.h zconf.h
DINDEX29 deflate.c
30 deflate.h
DChangeLog11 - 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 …]
Dalgorithm.txt1 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
Dcompress.c49 err = deflate(&stream, Z_FINISH);
DREADME6 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
Dzconf.h17 # define deflate z_deflate macro
Dzconf.in.h17 # define deflate z_deflate macro
Dzlib.h242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
Dgzio.c584 s->z_err = deflate(&(s->stream), Z_NO_FLUSH);
730 s->z_err = deflate(&(s->stream), flush);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dexample.c220 err = deflate(&c_stream, Z_NO_FLUSH);
226 err = deflate(&c_stream, Z_FINISH);
301 err = deflate(&c_stream, Z_NO_FLUSH);
312 err = deflate(&c_stream, Z_NO_FLUSH);
319 err = deflate(&c_stream, Z_NO_FLUSH);
322 err = deflate(&c_stream, Z_FINISH);
394 err = deflate(&c_stream, Z_FULL_FLUSH);
400 err = deflate(&c_stream, Z_FINISH);
482 err = deflate(&c_stream, Z_FINISH);
DFAQ33 5. deflate() or inflate() returns Z_BUF_ERROR.
38 Z_BUF_ERROR is not fatal--another call to deflate() or inflate() can be
130 18. Why does gzip give an error on a file I make with compress/deflate?
132 The compress and deflate functions produce data in the zlib format, which
148 You can request that deflate write the gzip format instead of the zlib
181 update the version strings in deflate.c and inftrees.c.
218 deflate stream once to generate an index, and then use that index for
229 understand the deflate format?
243 Yes. inflate() and deflate() will process any amount of data correctly.
244 Each call of inflate() or deflate() is limited to input and output chunks
[all …]
Dalgorithm.txt1 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
DINDEX43 deflate.c
44 deflate.h
DChangeLog26 - Correct comment in deflate.h
175 - Assure that high-water mark initialization is always applied in deflate
176 - Add assertions to fill_window() in deflate.c to match comments
238 - Correct spelling error in deflate.h [Kohler]
249 - Avoid deflate sensitivity to volatile input data
465 - Remove compressBound() call in deflate.c to avoid linking compress.o
482 - Change NULL's to Z_NULL's in deflate.c and in comments in zlib.h
524 - Remove extraneous #define MIN_LOOKAHEAD in deflate.c (in deflate.h)
525 - Clear bytes after deflate lookahead to avoid use of uninitialized data
529 - Allow Z_BLOCK for deflate() to force a new block
[all …]
DREADME6 http://tools.ietf.org/html/rfc1950 (zlib format), rfc1951 (deflate format) and
60 - For 64-bit Irix, deflate.c must be compiled without any optimization. With
80 The deflate format used by zlib was defined by Phil Katz. The deflate and
Dcompress.c49 err = deflate(&stream, Z_FINISH);
Dminigzip.c252 (void)deflate(strm, Z_NO_FLUSH);
312 (void)deflate(strm, Z_FINISH);
Dzconf.h40 # define deflate z_deflate macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dzlibmodule.c186 err = deflate(&zst, Z_FINISH); in PyZlib_compress()
435 err = deflate(&(self->zst), Z_NO_FLUSH); in PyZlib_objcompress()
449 err = deflate(&(self->zst), Z_NO_FLUSH); in PyZlib_objcompress()
651 err = deflate(&(self->zst), flushmode); in PyZlib_flush()
665 err = deflate(&(self->zst), flushmode); in PyZlib_flush()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dzlibmodule.c180 err = deflate(&zst, Z_FINISH); in PyZlib_compress()
429 err = deflate(&(self->zst), Z_NO_FLUSH); in PyZlib_objcompress()
443 err = deflate(&(self->zst), Z_NO_FLUSH); in PyZlib_objcompress()
625 err = deflate(&(self->zst), flushmode); in PyZlib_flush()
639 err = deflate(&(self->zst), flushmode); in PyZlib_flush()

12