Home
last modified time | relevance | path

Searched refs:fill (Results 1 – 9 of 9) sorted by relevance

/lib/
Ddecompress_unlz4.c32 long (*fill)(void *, unsigned long), in unlz4()
63 if (input && fill) { in unlz4()
68 } else if (!fill) { in unlz4()
83 if (fill) { in unlz4()
84 size = fill(inp, 4); in unlz4()
93 if (!fill) { in unlz4()
107 if (fill) { in unlz4()
108 size = fill(inp, 4); in unlz4()
119 if (!fill) { in unlz4()
132 if (!fill) { in unlz4()
[all …]
Ddecompress_unlzo.c99 long (*fill)(void *, unsigned long), in unlzo()
124 if (input && fill) { in unlzo()
129 } else if (!fill) { in unlzo()
144 if (fill) { in unlzo()
152 in_len = fill(in_buf, HEADER_SIZE_MAX); in unlzo()
162 if (fill) { in unlzo()
173 if (fill && in_len < 4) { in unlzo()
174 skip = fill(in_buf + in_len, 4 - in_len); in unlzo()
199 if (fill && in_len < 8) { in unlzo()
200 skip = fill(in_buf + in_len, 8 - in_len); in unlzo()
[all …]
Ddecompress_inflate.c39 long (*fill)(void*, unsigned long), in __gunzip()
85 if (!fill) in __gunzip()
86 fill = nofill; in __gunzip()
89 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
134 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
188 long (*fill)(void*, unsigned long), in gunzip()
194 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); in gunzip()
198 long (*fill)(void*, unsigned long), in __decompress()
204 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); in __decompress()
Dbtree.c417 int fill; in btree_grow() local
423 fill = getfill(geo, head->node, 0); in btree_grow()
424 setkey(geo, node, 0, bkey(geo, head->node, fill - 1)); in btree_grow()
435 int fill; in btree_shrink() local
441 fill = getfill(geo, node, 0); in btree_shrink()
442 BUG_ON(fill > 1); in btree_shrink()
453 int i, pos, fill, err; in btree_insert_level() local
465 fill = getfill(geo, node, pos); in btree_insert_level()
467 BUG_ON(pos < fill && keycmp(geo, node, pos, key) == 0); in btree_insert_level()
469 if (fill == geo->no_pairs) { in btree_insert_level()
[all …]
Ddecompress_unxz.c252 long (*fill)(void *dest, unsigned long size), in unxz()
269 if (fill == NULL && flush == NULL) in unxz()
299 if (fill == NULL && flush == NULL) { in unxz()
303 if (b.in_pos == b.in_size && fill != NULL) { in unxz()
309 in_size = fill(in, XZ_IOBUF_SIZE); in unxz()
399 long (*fill)(void*, unsigned long), in __decompress()
405 return unxz(buf, len, fill, flush, out_buf, pos, error); in __decompress()
Dtest_stackinit.c162 bool fill, \
176 if (fill) { \
283 static int noinline __leaf_switch_none(int path, bool fill) in __leaf_switch_none() argument
291 if (fill) { in __leaf_switch_none()
302 if (fill) { in __leaf_switch_none()
317 static noinline __init int leaf_switch_1_none(unsigned long sp, bool fill, in leaf_switch_1_none() argument
320 return __leaf_switch_none(1, fill); in leaf_switch_1_none()
323 static noinline __init int leaf_switch_2_none(unsigned long sp, bool fill, in leaf_switch_2_none() argument
326 return __leaf_switch_none(2, fill); in leaf_switch_2_none()
Ddecompress_bunzip2.c96 long (*fill)(void*, unsigned long); member
129 bd->inbufCount = bd->fill(bd->inbuf, BZIP2_IOBUF_SIZE); in get_bits()
630 long (*fill)(void*, unsigned long)) in start_bunzip()
649 if (fill != NULL) in start_bunzip()
650 bd->fill = fill; in start_bunzip()
652 bd->fill = nofill; in start_bunzip()
680 long (*fill)(void*, unsigned long), in bunzip2()
706 i = start_bunzip(&bd, inbuf, len, fill); in bunzip2()
748 long (*fill)(void*, unsigned long), in __decompress()
754 return bunzip2(buf, len - 4, fill, flush, outbuf, pos, error); in __decompress()
Ddecompress_unlzma.c68 long (*fill)(void*, unsigned long); member
93 rc->buffer_size = rc->fill((char *)rc->buffer, LZMA_IOBUF_SIZE); in rc_read()
102 long (*fill)(void*, unsigned long), in rc_init()
105 if (fill) in rc_init()
106 rc->fill = fill; in rc_init()
108 rc->fill = nofill; in rc_init()
538 long (*fill)(void*, unsigned long), in unlzma()
578 rc_init(&rc, fill, inbuf, in_len); in unlzma()
671 long (*fill)(void*, unsigned long), in __decompress()
677 return unlzma(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
/lib/zlib_inflate/
Dinftrees.c36 unsigned fill; /* index for replicating entries */ in zlib_inflate_table() local
220 fill = 1U << curr; in zlib_inflate_table()
221 min = fill; /* save offset to next table */ in zlib_inflate_table()
223 fill -= incr; in zlib_inflate_table()
224 next[(huff >> drop) + fill] = this; in zlib_inflate_table()
225 } while (fill != 0); in zlib_inflate_table()