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

/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Ddeflate.c260 state->strm.avail_in = mi + inlen - rptr;
261 rlen = state->strm.avail_in + PPP_HDRLEN + DEFLATE_OVHD;
324 state->strm.avail_in = rlen;
H A Dzlib.h161 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
180 The application must update next_in and avail_in when avail_in has
274 - Compress more input starting at next_in and update next_in and avail_in
276 enough room in the output buffer), next_in and avail_in are updated and
287 more output, and updating avail_in or avail_out accordingly; avail_out
331 0.1% larger than avail_in plus 12 bytes. If deflate does not return
377 - Decompress more input starting at next_in and update next_in and avail_in
491 must provide more input only by increasing avail_in. next_in is always
595 This function adds the data at next_in (avail_in byte
[all...]
H A Dzlib.c739 if (strm->next_in == Z_NULL && strm->avail_in != 0) {
776 if (state->status == FINISH_STATE && strm->avail_in != 0) {
782 if (strm->avail_in != 0 || state->lookahead != 0 ||
881 unsigned len = strm->avail_in;
887 strm->avail_in -= len;
1105 * At least one byte has been read, or avail_in == 0; reads are
1166 if (s->strm->avail_in == 0) return;
1197 } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0);
2855 #define NEEDBYTE {if(z->avail_in==0)goto empty;r=Z_OK;}
2856 #define NEXTBYTE (z->avail_in
[all...]
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-mkimage.c633 strm.avail_in = kernel_size;

Completed in 240 milliseconds