Home | History | Annotate | Download | only in pending

Lines Matching defs:out

81  * @out:        Beginning of the output buffer. This may be NULL if and only
87 * Only the contents of the output buffer from out[out_pos] onward, and
95 uint8_t *out;
121 * system out of memory when decompressing streams from untrusted sources.
139 * contents of the output buffer from b->out[b->out_pos] onward are
194 static uint8_t out[BUFSIZ];
231 b.out = out;
243 if (b.out_pos == sizeof(out)) {
244 if (fwrite(out, 1, b.out_pos, stdout) != b.out_pos) {
258 if (fwrite(out, 1, b.out_pos, stdout) != b.out_pos) {
400 /* Decode raw LZMA2 stream from b->in to b->out. */
445 uint8_t *out;
815 memcpy(b->out + b->out_pos, s->temp.buf, copy_size);
862 memcpy(b->out + b->out_pos, s->temp.buf, s->temp.size);
870 bcj_apply(s, b->out, &out_start, b->out_pos);
882 memcpy(s->temp.buf, b->out + b->out_pos, s->temp.size);
902 /* Make b->out{,_pos,_size} temporarily point to s->temp. */
903 s->out = b->out;
906 b->out = s->temp.buf;
913 b->out = s->out;
1546 memcpy(b->out + b->out_pos, b->in + b->in_pos,
1557 * Flush pending data from dictionary to b->out. It is assumed that there is
1558 * enough space in b->out. This is guaranteed because caller uses dict_limit()
1568 memcpy(b->out + b->out_pos, dict->buf + dict->start,
2202 * b->out. Check if we finished decoding this chunk.
2571 s->crc = xz_crc32(b->out + s->out_start,
2576 uint8_t *buf = b->out + s->out_start;