Home
last modified time | relevance | path

Searched refs:in_used (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/contrib/xz-embedded/userspace/
H A Dboottest.c53 int in_used; in test_buf_to_cb() local
56 ret = decompress(in, in_size, NULL, &flush, NULL, &in_used, &error); in test_buf_to_cb()
57 fprintf(stderr, "ret = %d; in_used = %d\n", ret, in_used); in test_buf_to_cb()
73 int in_used; in test_cb_to_buf() local
75 ret = decompress(in, 0, &fill, NULL, out, &in_used, &error); in test_cb_to_buf()
77 fprintf(stderr, "ret = %d; in_used = %d\n", ret, in_used); in test_cb_to_buf()
/freebsd/sys/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c254 unsigned char *out, int *in_used, in unxz() argument
266 if (in_used != NULL) in unxz()
267 *in_used = 0; in unxz()
304 if (in_used != NULL) in unxz()
305 *in_used += b.in_pos; in unxz()
346 if (in_used != NULL) in unxz()
347 *in_used += b.in_pos; in unxz()
/freebsd/sys/contrib/xz-embedded/linux/include/linux/decompress/
H A Dunxz.h16 unsigned char *out, int *in_used,
/freebsd/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_stream.c302 size_t in_used = b->in_pos - s->in_start; in index_update() local
303 s->index.size += in_used; in index_update()
304 s->crc = xz_crc32(b->in + s->in_start, in_used, s->crc); in index_update()