Lines Matching refs:avail_in
739 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--,z->total_in++,*z->next_in++)
2907 if (f == Z_PACKET_FLUSH && z->avail_in == 0 && z->avail_out != 0)
2967 * This subroutine adds the data at next_in/avail_in to the output history
3000 if ((n = z->avail_in) == 0)
3020 z->avail_in = n;
3099 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
3104 #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
3533 * This subroutine adds the data at next_in/avail_in to the output history