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

/ast/src/lib/libz/
H A Duncompr.c40 stream.next_out = dest;
H A Dcompress.c38 stream.next_out = dest;
H A Dgzio.c129 s->stream.next_out = s->outbuf = Z_NULL;
190 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
315 s->stream.next_out = s->outbuf;
491 Byte *next_out; /* == stream.next_out but not forced far (for ZLIB_MSDOS) */ local
498 next_out = (Byte*)buf;
499 s->stream.next_out = (Bytef*)buf;
503 *next_out++ = s->back;
504 s->stream.next_out++;
522 zmemcpy(s->stream.next_out,
[all...]
H A Dexample.c185 c_stream.next_out = compr;
222 d_stream.next_out = uncompr;
262 c_stream.next_out = compr;
323 d_stream.next_out = uncompr; /* discard the output */
360 c_stream.next_out = compr;
401 d_stream.next_out = uncompr;
445 c_stream.next_out = compr;
482 d_stream.next_out = uncompr;
H A Dinffast.c75 unsigned char FAR *out; /* local strm->next_out */
76 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */
102 out = strm->next_out - OFF;
296 strm->next_out = out + OFF;
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()
350 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
357 zmemcpy(state->window + state->write, strm->next_out - copy, dist);
360 zmemcpy(state->window, strm->next_out - copy, copy);
405 put = strm->next_out; \
416 strm->next_out = put; \
545 strm->next_out, given the space available and the provided input--the effect
577 if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out
[all...]
H A Dinfback.c121 put = strm->next_out; \
132 strm->next_out = put; \
H A Dzlib.h87 Bytef *next_out; /* next output byte should be put there */ member in struct:z_stream_s
88 uInt avail_out; /* remaining free space at next_out */
130 dropped to zero. It must update next_out and avail_out when avail_out
257 - Provide more output starting at next_out and update next_out and avail_out
321 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
359 avail_in may be modified, but next_out and avail_out are unchanged.)
378 - Provide more output starting at next_out and update next_out and avail_out
408 uncompressed data from that block has been written to strm->next_out
[all...]
H A Ddeflate.c529 * to avoid allocating a large strm->next_out buffer and copying into it.
540 zmemcpy(strm->next_out, strm->state->pending_out, len);
541 strm->next_out += len;
565 if (strm->next_out == Z_NULL ||
/ast/src/lib/libbz/
H A Dbzlib.c347 *(s->strm->next_out) = ((UChar*)(s->quadrant))[s->state_out_pos];
350 s->strm->next_out++;
539 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
542 s->strm->next_out++;
587 char* cs_next_out = s->strm->next_out;
656 s->strm->next_out = cs_next_out;
692 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
695 s->strm->next_out++;
737 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
740 s->strm->next_out
[all...]
H A Dbzlib.h89 char *next_out; member in struct:__anon329
/ast/src/cmd/INIT/
H A Dratz.c510 Bytef *next_out; /* next output byte should be put there */ member in struct:z_stream_s
511 uInt avail_out; /* remaining free space at next_out */
2071 unsigned char FAR *out; /* local strm->next_out */
2072 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */
2098 out = strm->next_out - OFF;
2292 strm->next_out = out + OFF;
2569 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
2576 zmemcpy(state->window + state->write, strm->next_out - copy, dist);
2579 zmemcpy(state->window, strm->next_out - copy, copy);
2624 put = strm->next_out; \
[all...]

Completed in 76 milliseconds