Home | History | Annotate | Download | only in zlib

Lines Matching defs:have

69     unsigned have, max = ((unsigned)-1 >> 2) + 1;
125 have = strm->avail_out;
132 have -= strm->avail_out;
133 } while (have);
197 unsigned have, copy;
201 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
203 copy = state->size - have;
206 memcpy(state->in + have, buf, copy);
290 unsigned have;
317 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
318 if (have < state->size) {
319 state->in[have] = (unsigned char)c;
378 /* make sure we have some buffer space */
468 /* make sure we have some buffer space */