Searched refs:deflate (Results 76 - 100 of 105) sorted by relevance

12345

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dpngenc.c219 ret = deflate(&s->zstream, Z_NO_FLUSH);
396 ret = deflate(&s->zstream, Z_FINISH);
H A Dzmbvenc.c229 if((zret = deflate(&c->zstream, Z_SYNC_FLUSH)) != Z_OK){
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/testzlib/
H A Dtestzlib.c209 ret=deflate(&zcpr,(zcpr.avail_in==lOrigToDo) ? Z_FINISH : Z_SYNC_FLUSH);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/testzlib/
H A Dtestzlib.c209 ret=deflate(&zcpr,(zcpr.avail_in==lOrigToDo) ? Z_FINISH : Z_SYNC_FLUSH);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Dzlib.h28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
58 around a deflate stream, which is itself documented in RFC 1951.
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
168 /* Allowed flush values; see deflate() and inflate() below for details */
203 /* The deflate compression method (the only one supported in this version) */
238 perform any compression: this will be done by deflate().
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
244 deflate compresses as much data as possible, and stops when the input
249 The detailed semantics are as follows. deflate performs one or both of the
255 processing will resume at this point for the next call of deflate()
[all...]
H A Dgzio.c69 z_off_t in; /* bytes into deflate or inflate */
70 z_off_t out; /* bytes out of deflate or inflate */
584 s->z_err = deflate(&(s->stream), Z_NO_FLUSH);
703 flush is as in the deflate() function.
730 s->z_err = deflate(&(s->stream), flush);
736 /* deflate has finished flushing only when it hasn't used up
H A Ddeflate.c0 /* deflate.c -- compress data using the deflation algorithm
52 #include "deflate.h"
55 " deflate 1.2.3 Copyright 1995-2005 Jean-loup Gailly ";
69 finish_started, /* finish started, need only more output at next deflate */
115 * See deflate.c for comments about the MIN_MATCH+1.
152 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
376 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
440 err = deflate(strm, Z_PARTIAL_FLUSH);
481 * resulting from using fixed blocks instead of stored blocks, which deflate
527 * Flush as much pending output as possible. All deflate() outpu
552 int ZEXPORT deflate (strm, flush) function
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
H A Dzlib.h28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
58 around a deflate stream, which is itself documented in RFC 1951.
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
168 /* Allowed flush values; see deflate() and inflate() below for details */
203 /* The deflate compression method (the only one supported in this version) */
238 perform any compression: this will be done by deflate().
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
244 deflate compresses as much data as possible, and stops when the input
249 The detailed semantics are as follows. deflate performs one or both of the
255 processing will resume at this point for the next call of deflate()
[all...]
H A Dgzio.c69 z_off_t in; /* bytes into deflate or inflate */
70 z_off_t out; /* bytes out of deflate or inflate */
584 s->z_err = deflate(&(s->stream), Z_NO_FLUSH);
703 flush is as in the deflate() function.
730 s->z_err = deflate(&(s->stream), flush);
736 /* deflate has finished flushing only when it hasn't used up
H A Ddeflate.c0 /* deflate.c -- compress data using the deflation algorithm
52 #include "deflate.h"
55 " deflate 1.2.3 Copyright 1995-2005 Jean-loup Gailly ";
69 finish_started, /* finish started, need only more output at next deflate */
115 * See deflate.c for comments about the MIN_MATCH+1.
152 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
376 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
440 err = deflate(strm, Z_PARTIAL_FLUSH);
481 * resulting from using fixed blocks instead of stored blocks, which deflate
527 * Flush as much pending output as possible. All deflate() outpu
552 int ZEXPORT deflate (strm, flush) function
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masmx64/
H A Dgvmat64.asm9 ; from Jean-loup Gailly in deflate.c of zLib and infoZip zip.
154 ; parameter 1 in r8(deflate state s), param 2 in rdx (cur match)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/examples/
H A Dgzappend.c53 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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masmx64/
H A Dgvmat64.asm9 ; from Jean-loup Gailly in deflate.c of zLib and infoZip zip.
154 ; parameter 1 in r8(deflate state s), param 2 in rdx (cur match)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/examples/
H A Dgzappend.c53 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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/modules/
H A Ddeflate.c38 * $Id: deflate.c,v 1.12 2004/01/17 05:47:55 carlsonj Exp $
368 r = deflate(&state->strm, flush);
370 printf("z_compress: deflate returned %d (%s)\n",
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/as400/
H A Dzlib.inc201 D deflate PR 10I 0 extproc('deflate') Compress data
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masm686/
H A Dmatch.asm44 ; gzhead and gzindex are added in zlib 1.2.2.2 (see deflate.h)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/minizip/
H A Dzip.c1002 err=deflate(&zi->ci.stream, Z_NO_FLUSH);
1060 err=deflate(&zi->ci.stream, Z_FINISH);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/as400/
H A Dzlib.inc201 D deflate PR 10I 0 extproc('deflate') Compress data
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masm686/
H A Dmatch.asm44 ; gzhead and gzindex are added in zlib 1.2.2.2 (see deflate.h)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/minizip/
H A Dzip.c1002 err=deflate(&zi->ci.stream, Z_NO_FLUSH);
1060 err=deflate(&zi->ci.stream, Z_FINISH);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/
H A Dgzip.c109 #endif /* at least 32K for zip's deflate method */
117 * See deflate.c for comments about the MIN_MATCH+1.
231 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
302 #define head (G1.prev + WSIZE) /* hash head (see deflate.c) */
1690 * the compressed length, crc, deflate flags and internal file
1718 static ulg deflate(void) function
1999 deflate();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A DxmlIO.c1500 ** Extend the buffer prior to deflate call if a reasonable amount
1509 z_err = deflate( &buff->zctrl, Z_NO_FLUSH );
1550 z_err = deflate( &buff->zctrl, Z_FINISH );
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A DxmlIO.c1516 ** Extend the buffer prior to deflate call if a reasonable amount
1525 z_err = deflate( &buff->zctrl, Z_NO_FLUSH );
1566 z_err = deflate( &buff->zctrl, Z_FINISH );
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A DxmlIO.c1500 ** Extend the buffer prior to deflate call if a reasonable amount
1509 z_err = deflate( &buff->zctrl, Z_NO_FLUSH );
1550 z_err = deflate( &buff->zctrl, Z_FINISH );

Completed in 182 milliseconds

12345