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) {
406 /* Decode raw LZMA2 stream from b->in to b->out. */
451 uint8_t *out;
821 memcpy(b->out + b->out_pos, s->temp.buf, copy_size);
868 memcpy(b->out + b->out_pos, s->temp.buf, s->temp.size);
876 bcj_apply(s, b->out, &out_start, b->out_pos);
888 memcpy(s->temp.buf, b->out + b->out_pos, s->temp.size);
908 /* Make b->out{,_pos,_size} temporarily point to s->temp. */
909 s->out = b->out;
912 b->out = s->temp.buf;
919 b->out = s->out;
1552 memcpy(b->out + b->out_pos, b->in + b->in_pos,
1563 * Flush pending data from dictionary to b->out. It is assumed that there is
1564 * enough space in b->out. This is guaranteed because caller uses dict_limit()
1574 memcpy(b->out + b->out_pos, dict->buf + dict->start,
2208 * b->out. Check if we finished decoding this chunk.
2579 s->crc = xz_crc32(b->out + s->out_start,
2584 uint8_t *buf = b->out + s->out_start;