Searched defs:out_pos (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/lib/xzembed/
H A Dxz.h84 * if out_pos is equal to out_size.
85 * @out_pos: Current position in the output buffer. This must not exceed
89 * Only the contents of the output buffer from out[out_pos] onward, and
90 * the variables in_pos and out_pos are modified by the XZ code.
98 size_t out_pos; member in struct:xz_buf
154 * b->out_pos are not modified, and the contents of the output buffer from
155 * b->out[b->out_pos] onward are undefined.
H A Dxz_dec_bcj.c59 size_t out_pos; member in struct:xz_dec_bcj
413 copy_size = min_t(size_t, s->temp.filtered, b->out_size - b->out_pos);
414 memcpy(b->out + b->out_pos, s->temp.buf, copy_size);
415 b->out_pos += copy_size;
454 if (s->temp.size < b->out_size - b->out_pos) {
455 out_start = b->out_pos;
456 memcpy(b->out + b->out_pos, s->temp.buf, s->temp.size);
457 b->out_pos += s->temp.size;
464 bcj_apply(s, b->out, &out_start, b->out_pos);
474 s->temp.size = b->out_pos
[all...]

Completed in 21 milliseconds