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

/forgerock/web-agents-v4/zlib/
H A Duncompr.c33 stream.next_in = (z_const Bytef *)source;
H A Dcompress.c32 stream.next_in = (z_const Bytef *)source;
H A Dgzwrite.c64 /* Compress whatever is at avail_in and next_in and write to the output file.
84 got = write(state->fd, strm->next_in, strm->avail_in);
155 strm->next_in = state->in;
213 strm->next_in = state->in;
214 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
234 strm->next_in = (z_const Bytef *)buf;
275 strm->next_in = state->in;
276 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
367 strm->next_in = state->in;
457 strm->next_in
[all...]
H A Dgzread.c62 unsigned const char *q = strm->next_in;
72 strm->next_in = state->in;
111 state->strm.next_in = Z_NULL;
137 strm->next_in[0] == 31 && strm->next_in[1] == 139) {
158 memcpy(state->x.next, strm->next_in, strm->avail_in);
H A Dinffast.c72 z_const unsigned char FAR *in; /* local strm->next_in */
99 in = strm->next_in - OFF;
316 strm->next_in = in + OFF;
H A Dinfback.c132 next = strm->next_in; \
143 strm->next_in = next; \
243 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
282 next = strm->next_in;
626 strm->next_in = next;
H A Dinflate.c78 * - Check next_in and next_out for Z_NULL on entry to inflate()
463 next = strm->next_in; \
474 strm->next_in = next; \
629 (strm->next_in == Z_NULL && strm->avail_in != 0))
1406 len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
1408 strm->next_in += len;
H A Ddeflate.c209 /* To do: ignore strm->next_in if we use it as window */
360 next = strm->next_in;
362 strm->next_in = (z_const Bytef *)dictionary;
385 strm->next_in = next;
679 (strm->next_in == Z_NULL && strm->avail_in != 0) ||
1073 * allocating a large strm->next_in buffer and copying from it.
1088 zmemcpy(buf, strm->next_in, len);
1097 strm->next_in += len;
H A Dzlib.h86 z_const Bytef *next_in; /* next input byte */ member in struct:z_stream_s
87 uInt avail_in; /* number of bytes available at next_in */
132 The application must update next_in and avail_in when avail_in has dropped
256 - Compress more input starting at next_in and update next_in and avail_in
258 enough room in the output buffer), next_in and avail_in are updated and
346 if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible
371 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
372 the caller. If next_in is not Z_NULL and avail_in is large enough (the
385 will be done by inflate(). (So next_in an
[all...]
H A Dzip.c1423 zi->ci.bstream.next_in = (void*)buf;
1457 zi->ci.stream.next_in = (Bytef*)buf;
1496 *(((const char*)zi->ci.stream.next_in)+i);
1500 zi->ci.stream.next_in+= copy_this;
/forgerock/web-agents-v4/source/
H A Dutility.c669 strm.next_in = (Bytef *) compressed;
730 strm.next_in = (Bytef *) uncompressed;

Completed in 60 milliseconds