Searched refs:total_out (Results 1 - 25 of 56) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/tools/
H A Dcws2fws.c85 last_out = zstream.total_out;
101 zstream.avail_in, zstream.total_in, zstream.avail_out, zstream.total_out,
102 zstream.total_out-last_out);
104 write(fd_out, &buf_out, zstream.total_out-last_out);
112 if (zstream.total_out != uncomp_len-8)
115 zstream.total_out, uncomp_len-8);
117 buf_in[0] = (zstream.total_out+8) & 0xff;
118 buf_in[1] = ((zstream.total_out+8) >> 8) & 0xff;
119 buf_in[2] = ((zstream.total_out+8) >> 16) & 0xff;
120 buf_in[3] = ((zstream.total_out
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/squashfs/
H A Dsqlzma.h35 int LzmaCompress(char *in_data, int in_size, char *out_data, int out_size, unsigned long *total_out);
H A Dsqlzma.c57 int LzmaCompress(char *in_data, int in_size, char *out_data, int out_size, unsigned long *total_out) argument
69 *total_out = outProcess + LZMA_PROPS_SIZE;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jffs2/
H A Dcompr_zlib.c91 def_strm.total_out = 0;
93 while (def_strm.total_out < *dstlen - STREAM_END_SPACE && def_strm.total_in < *sourcelen) {
94 def_strm.avail_out = *dstlen - (def_strm.total_out + STREAM_END_SPACE);
99 D1(printk(KERN_DEBUG "deflate returned with avail_in %d, avail_out %d, total_in %ld, total_out %ld\n",
100 def_strm.avail_in, def_strm.avail_out, def_strm.total_in, def_strm.total_out));
119 if (def_strm.total_out >= def_strm.total_in) {
121 def_strm.total_in, def_strm.total_out));
127 def_strm.total_in, def_strm.total_out));
129 *dstlen = def_strm.total_out;
153 inf_strm.total_out
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/dotzlib/DotZLib/
H A DCodecBase.cs77 if (_ztream.total_out > 0)
80 DataAvailable( _outBuffer, 0, (int)_ztream.total_out);
182 _ztream.total_out = 0;
H A DDotZLib.cs38 public uint total_out; field in struct:DotZLib.ZStream
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/dotzlib/DotZLib/
H A DCodecBase.cs77 if (_ztream.total_out > 0)
80 DataAvailable( _outBuffer, 0, (int)_ztream.total_out);
182 _ztream.total_out = 0;
H A DDotZLib.cs38 public uint total_out; field in struct:DotZLib.ZStream
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/tunala/
H A Dbuffer.c8 buf->total_in = buf->total_out = 0;
33 return buf->total_out; }
111 buf->total_out += towrite;
173 buf->total_out += ret;
199 buf->total_out += ret;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/tunala/
H A Dbuffer.c8 buf->total_in = buf->total_out = 0;
33 return buf->total_out; }
111 buf->total_out += towrite;
173 buf->total_out += ret;
199 buf->total_out += ret;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Duncompr.c57 *destLen = stream.total_out;
H A Dcompress.c54 *destLen = stream.total_out;
H A Dexample.c187 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
227 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
333 if (d_stream.total_out != 2*uncomprLen + comprLen/2) {
334 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
376 *comprLen = c_stream.total_out;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
H A Duncompr.c57 *destLen = stream.total_out;
H A Dcompress.c54 *destLen = stream.total_out;
H A Dexample.c187 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
227 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
333 if (d_stream.total_out != 2*uncomprLen + comprLen/2) {
334 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
376 *comprLen = c_stream.total_out;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/cramfs/
H A Duncompress.c48 return stream.total_out;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dzlib.h91 uLong total_out; /* total nb of bytes output so far */ member in struct:z_stream_s
130 The fields total_in and total_out can be used for statistics or
403 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlclenc.c129 for (i = 0; i < c->zstream.total_out; i++)
133 return c->zstream.total_out;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/delphi/
H A DZLib.pas30 total_out: Longint; // total nb of bytes output so far
315 ReallocMem(OutBuf, strm.total_out);
316 OutBytes := strm.total_out;
358 ReallocMem(OutBuf, strm.total_out);
359 OutBytes := strm.total_out;
477 Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0;
541 ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
543 if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
553 Result := FZRec.total_out;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/delphi/
H A DZLib.pas30 total_out: Longint; // total nb of bytes output so far
315 ReallocMem(OutBuf, strm.total_out);
316 OutBytes := strm.total_out;
358 ReallocMem(OutBuf, strm.total_out);
359 OutBytes := strm.total_out;
477 Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0;
541 ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
543 if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
553 Result := FZRec.total_out;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppdump/
H A Dzlib.h166 uLong total_out; /* total nb of bytes output so far */ member in struct:z_stream_s
201 The fields total_in and total_out can be used for statistics or
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/testzlib/
H A Dtestzlib.c215 lSizeCpr=zcpr.total_out;
256 lSizeUncpr=zcpr.total_out;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/crypto/
H A Ddeflate.c127 *dlen = stream->total_out;
163 *dlen = stream->total_out;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/testzlib/
H A Dtestzlib.c215 lSizeCpr=zcpr.total_out;
256 lSizeUncpr=zcpr.total_out;

Completed in 203 milliseconds

123