Searched defs:avail_in (Results 1 - 3 of 3) sorted by relevance

/ast/src/lib/libbz/
H A Dbzlib.h86 unsigned int avail_in; member in struct:__anon329
/ast/src/lib/libz/
H A Dzlib.h84 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
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
265 more output, and updating avail_in or avail_out accordingly; avail_out
279 avail_in is zero after the call if enough output space has been provided
322 (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not
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 i
[all...]
/ast/src/cmd/INIT/
H A Dratz.c507 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
2040 strm->avail_in >= 6
2056 Therefore if strm->avail_in >= 6, then there is enough input to avoid
2097 last = in + (strm->avail_in - 5);
2293 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
2627 have = strm->avail_in; \
2638 strm->avail_in = have; \
2756 Progress is defined as a change in either strm->avail_in or strm->avail_out.
2797 (strm->next_in == Z_NULL && strm->avail_in != 0))
3359 in -= strm->avail_in;
[all...]

Completed in 27 milliseconds