• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/

Lines Matching defs:next_in

83     Bytef    *next_in;  /* next input byte */
84 uInt avail_in; /* number of bytes available at next_in */
129 The application must update next_in and avail_in when avail_in has
252 - Compress more input starting at next_in and update next_in and avail_in
254 enough room in the output buffer), next_in and avail_in are updated and
321 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
346 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
347 the caller. If next_in is not Z_NULL and avail_in is large enough (the exact
358 the zlib header if present: this will be done by inflate(). (So next_in and
373 - Decompress more input starting at next_in and update next_in and avail_in
375 enough room in the output buffer), next_in is updated and processing
403 number of unused bits in the last byte taken from strm->next_in, plus 64
452 if next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory,
488 fields next_in, zalloc, zfree and opaque must be initialized before by
698 fields next_in, avail_in, zalloc, zfree and opaque must be initialized
732 be done by inflate(). (So next_in and avail_in may be modified, but next_out
806 from next_in. This function should only be used with raw inflate, and
923 setting strm->next_in and strm->avail_in. If that input is exhausted, then
924 in() will be called. Therefore strm->next_in must be initialized before
925 calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called
926 immediately for input. If strm->next_in is not Z_NULL, then strm->avail_in
928 initially be taken from strm->next_in[0 .. strm->avail_in - 1].
935 On return, inflateBack() will set strm->next_in and strm->avail_in to
942 distinguished using strm->next_in which will be Z_NULL only if in() returned
945 strm->next_in is assured to be defined if out() returns non-zero.) Note