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

/forgerock/web-agents-v4/zlib/
H A Duncompr.c38 stream.next_out = dest;
H A Dcompress.c38 stream.next_out = dest;
H A Dinffast.c74 unsigned char FAR *out; /* local strm->next_out */
75 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */
101 out = strm->next_out - OFF;
317 strm->next_out = out + OFF;
H A Dgzwrite.c58 strm->next_out = state->out;
59 state->x.next = strm->next_out;
100 have = (unsigned)(strm->next_out - state->x.next);
108 strm->next_out = state->out;
110 state->x.next = strm->next_out;
H A Dgzread.c167 /* Decompress from input to the provided next_out and avail_out in the state.
210 state->x.next = strm->next_out - state->x.have;
247 strm->next_out = state->out;
363 strm->next_out = (unsigned char *)buf;
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
78 * - Check next_in and next_out for Z_NULL on entry to inflate()
461 put = strm->next_out; \
472 strm->next_out = put; \
596 strm->next_out, given the space available and the provided input--the effect
628 if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out == Z_NULL ||
1234 if (updatewindow(strm, strm->next_out, out - strm->avail_out)) {
1245 UPDATE(state->check, strm->next_out - out, out);
H A Dinfback.c130 put = strm->next_out; \
141 strm->next_out = put; \
H A Dzip.c1196 zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
1205 zi->ci.stream.next_out = zi->ci.buffered_data;
1434 zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
1467 zi->ci.stream.next_out = zi->ci.buffered_data;
1495 *(((char*)zi->ci.stream.next_out)+i) =
1501 zi->ci.stream.next_out+= copy_this;
1544 zi->ci.stream.next_out = zi->ci.buffered_data;
1563 zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
H A Dzlib.h90 Bytef *next_out; /* next output byte should be put there */ member in struct:z_stream_s
91 uInt avail_out; /* remaining free space at next_out */
133 to zero. It must update next_out and avail_out when avail_out has dropped
261 - Provide more output starting at next_out and update next_out and avail_out
346 if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible
386 next_out and avail_out are unused and unchanged.) The current implementation
407 - Provide more output starting at next_out and update next_out and avail_out
437 data from that block has been written to strm->next_out
[all...]
H A Ddeflate.c639 * to avoid allocating a large strm->next_out buffer and copying into it.
653 zmemcpy(strm->next_out, s->pending_out, len);
654 strm->next_out += len;
678 if (strm->next_out == Z_NULL ||
/forgerock/web-agents-v4/source/
H A Dutility.c695 strm.next_out = (Bytef *) (uncomp + strm.total_out);
747 strm.next_out = (Bytef *) (comp + strm.total_out);

Completed in 229 milliseconds