Searched refs:out_pos (Results 1 – 8 of 8) sorted by relevance
/linux-2.6.39/lib/xz/ |
D | xz_dec_bcj.c | 52 size_t out_pos; member 403 copy_size = min_t(size_t, s->temp.filtered, b->out_size - b->out_pos); in bcj_flush() 404 memcpy(b->out + b->out_pos, s->temp.buf, copy_size); in bcj_flush() 405 b->out_pos += copy_size; in bcj_flush() 445 if (s->temp.size < b->out_size - b->out_pos) { in xz_dec_bcj_run() 446 out_start = b->out_pos; in xz_dec_bcj_run() 447 memcpy(b->out + b->out_pos, s->temp.buf, s->temp.size); in xz_dec_bcj_run() 448 b->out_pos += s->temp.size; in xz_dec_bcj_run() 455 bcj_apply(s, b->out, &out_start, b->out_pos); in xz_dec_bcj_run() 465 s->temp.size = b->out_pos - out_start; in xz_dec_bcj_run() [all …]
|
D | xz_dec_test.c | 77 buffers.out_pos = 0; in xz_dec_test_open() 120 while ((remaining > 0 || buffers.out_pos == buffers.out_size) in xz_dec_test_write() 132 buffers.out_pos = 0; in xz_dec_test_write() 134 crc = crc32(crc, buffer_out, buffers.out_pos); in xz_dec_test_write()
|
D | xz_dec_lzma2.c | 289 dict->buf = b->out + b->out_pos; in dict_reset() 290 dict->end = b->out_size - b->out_pos; in dict_reset() 380 && b->out_pos < b->out_size) { in dict_uncompressed() 382 b->out_size - b->out_pos); in dict_uncompressed() 400 memcpy(b->out + b->out_pos, b->in + b->in_pos, in dict_uncompressed() 406 b->out_pos += copy_size; in dict_uncompressed() 424 memcpy(b->out + b->out_pos, dict->buf + dict->start, in dict_flush() 429 b->out_pos += copy_size; in dict_flush() 1067 b->out_size - b->out_pos, in xz_dec_lzma2_run() 1082 } else if (b->out_pos == b->out_size in xz_dec_lzma2_run()
|
D | xz_dec_stream.c | 223 s->out_start = b->out_pos; in dec_block() 233 s->block.uncompressed += b->out_pos - s->out_start; in dec_block() 246 b->out_pos - s->out_start, s->crc32); in dec_block() 744 out_start = b->out_pos; in xz_dec_run() 754 b->out_pos = out_start; in xz_dec_run() 758 && out_start == b->out_pos) { in xz_dec_run()
|
/linux-2.6.39/lib/ |
D | decompress_unxz.c | 297 b.out_pos = 0; in unxz() 325 if (flush != NULL && (b.out_pos == b.out_size in unxz() 326 || (ret != XZ_OK && b.out_pos > 0))) { in unxz() 332 if (flush(b.out, b.out_pos) != (int)b.out_pos) in unxz() 335 b.out_pos = 0; in unxz()
|
/linux-2.6.39/fs/squashfs/ |
D | xz_wrapper.c | 119 stream->buf.out_pos = 0; in squashfs_xz_uncompress() 137 if (stream->buf.out_pos == stream->buf.out_size in squashfs_xz_uncompress() 140 stream->buf.out_pos = 0; in squashfs_xz_uncompress() 160 total += stream->buf.out_pos; in squashfs_xz_uncompress()
|
/linux-2.6.39/include/linux/ |
D | xz.h | 142 size_t out_pos; member
|
/linux-2.6.39/sound/usb/caiaq/ |
D | audio.c | 204 int out_pos; in snd_usb_caiaq_pcm_prepare() local 209 out_pos = BYTES_PER_SAMPLE + 1; in snd_usb_caiaq_pcm_prepare() 213 out_pos = 0; in snd_usb_caiaq_pcm_prepare() 217 dev->period_out_count[index] = out_pos; in snd_usb_caiaq_pcm_prepare() 218 dev->audio_out_buf_pos[index] = out_pos; in snd_usb_caiaq_pcm_prepare()
|