Searched refs:next_in (Results 1 - 13 of 13) sorted by relevance

/ast/src/lib/libz/
H A Duncompr.c35 stream.next_in = (Bytef*)source;
H A Dcompress.c32 stream.next_in = (Bytef*)source;
H A Dexample.c184 c_stream.next_in = (Bytef*)hello;
220 d_stream.next_in = compr;
268 c_stream.next_in = uncompr;
279 c_stream.next_in = compr;
286 c_stream.next_in = uncompr;
316 d_stream.next_in = compr;
359 c_stream.next_in = (Bytef*)hello;
395 d_stream.next_in = compr;
448 c_stream.next_in = (Bytef*)hello;
476 d_stream.next_in
[all...]
H A Dgzio.c128 s->stream.next_in = s->inbuf = Z_NULL;
198 s->stream.next_in = s->inbuf = (Byte*)ALLOC((len > Z_BUFSIZE) ? len : Z_BUFSIZE);
241 s->start = s->stream.next_in - s->inbuf;
326 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
342 s->stream.next_in = s->inbuf;
345 return *(s->stream.next_in)++;
370 if (len != 0) s->stream.avail_in++, s->stream.next_in--;
372 s->stream.avail_in++, s->stream.next_in--;
385 if (len) s->inbuf[0] = s->stream.next_in[0];
390 s->stream.next_in
[all...]
H A Dinffast.c73 unsigned char FAR *in; /* local strm->next_in */
100 in = strm->next_in - OFF;
295 strm->next_in = in + OFF;
H A Dinfback.c123 next = strm->next_in; \
134 strm->next_in = next; \
234 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
273 next = strm->next_in;
609 strm->next_in = next;
H A Dinflate.c78 * - Check next_in and next_out for Z_NULL on entry to inflate()
407 next = strm->next_in; \
418 strm->next_in = next; \
578 (strm->next_in == Z_NULL && strm->avail_in != 0))
1291 len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
1293 strm->next_in += len;
H A Ddeflate.c212 /* To do: ignore strm->next_in if we use it as window */
566 (strm->next_in == Z_NULL && strm->avail_in != 0) ||
953 * allocating a large strm->next_in buffer and copying from it.
969 strm->adler = adler32(strm->adler, strm->next_in, len);
973 strm->adler = crc32(strm->adler, strm->next_in, len);
976 zmemcpy(buf, strm->next_in, len);
977 strm->next_in += len;
H A Dzlib.h83 Bytef *next_in; /* next input byte */ member in struct:z_stream_s
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 an
[all...]
/ast/src/lib/libbz/
H A Dbzlib.c304 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
305 s->strm->next_in++;
321 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
322 s->strm->next_in++;
949 bzf->strm.next_in = buf;
1077 bzf->strm.next_in = bzf->buf;
1138 bzf->strm.next_in = bzf->buf;
1180 *unused = bzf->strm.next_in;
1217 strm.next_in = source;
1265 strm.next_in
[all...]
H A Dbzlib.h85 char *next_in; member in struct:__anon329
H A Ddecompress.c99 (*((UChar*)(s->strm->next_in)))); \
101 s->strm->next_in++; \
/ast/src/cmd/INIT/
H A Dratz.c506 Bytef *next_in; /* next input byte */ member in struct:z_stream_s
507 uInt avail_in; /* number of bytes available at next_in */
2069 unsigned char FAR *in; /* local strm->next_in */
2096 in = strm->next_in - OFF;
2291 strm->next_in = in + OFF;
2626 next = strm->next_in; \
2637 strm->next_in = next; \
2797 (strm->next_in == Z_NULL && strm->avail_in != 0))
3512 len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
3514 strm->next_in
[all...]

Completed in 59 milliseconds