Searched refs:avail_in (Results 1 - 10 of 10) sorted by relevance

/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Duncompr.c35 stream.avail_in = (uInt)sourceLen;
37 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
H A Dcompress.c31 stream.avail_in = (uInt)sourceLen;
34 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
H A Dexample.c182 c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers */
215 d_stream.avail_in = 0;
222 d_stream.avail_in = d_stream.avail_out = 1; /* force small buffers */
263 c_stream.avail_in = (uInt)uncomprLen;
266 if (c_stream.avail_in != 0) {
274 c_stream.avail_in = (uInt)comprLen/2;
281 c_stream.avail_in = (uInt)uncomprLen;
311 d_stream.avail_in = (uInt)comprLen;
355 c_stream.avail_in = 3;
361 c_stream.avail_in
[all...]
H A Dgzio.c95 s->stream.avail_in = s->stream.avail_out = 0;
173 s->startpos = (ftell(s->file) - s->stream.avail_in);
231 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
239 if (s->stream.avail_in == 0) {
241 s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file);
242 if (s->stream.avail_in == 0) {
249 s->stream.avail_in--;
259 s->stream.avail_in is zero for the first time, but may be non-zero
274 if (len != 0) s->stream.avail_in++, s->stream.next_in--;
276 s->stream.avail_in
[all...]
H A Dinfutil.h68 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
73 #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
H A Dinflate.c148 #define NEEDBYTE {if(z->avail_in==0)return r;r=f;}
149 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
319 if ((n = z->avail_in) == 0)
340 z->avail_in = n;
H A Dinffast.c21 #define UNGRAB {c=z->avail_in-n;c=(k>>3)<c?k>>3:c;n+=c;p-=c;k-=c<<3;}
H A Ddeflate.c449 (strm->next_in == Z_NULL && strm->avail_in != 0) ||
487 * avail_in equal to zero. There won't be anything to do,
499 } else if (strm->avail_in == 0 && flush <= old_flush &&
505 if (s->status == FINISH_STATE && strm->avail_in != 0) {
511 if (strm->avail_in != 0 || s->lookahead != 0 ||
666 unsigned len = strm->avail_in;
671 strm->avail_in -= len;
956 * At least one byte has been read, or avail_in == 0; reads are
1017 if (s->strm->avail_in == 0) return;
1047 } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in !
[all...]
H A Dzlib.h70 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
92 The application must update next_in and avail_in when avail_in has
211 - Compress more input starting at next_in and update next_in and avail_in
213 enough room in the output buffer), next_in and avail_in are updated and
224 more output, and updating avail_in or avail_out accordingly; avail_out
234 avail_in is zero after the call if enough output space has been provided
259 0.1% larger than avail_in plus 12 bytes. If deflate does not return
275 (for example avail_in or avail_out was zero).
297 next_in, avail_in, zallo
[all...]
/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Dzip_util.c892 strm.avail_in = n;
912 } while (strm.avail_in > 0 || !strm.avail_out);

Completed in 292 milliseconds