Home
last modified time | relevance | path

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

/lib/
Ddecompress_unlz4.c35 long (*fill)(void *, unsigned long), in unlz4()
66 if (input && fill) { in unlz4()
71 } else if (!fill) { in unlz4()
86 if (fill) { in unlz4()
87 size = fill(inp, 4); in unlz4()
96 if (!fill) { in unlz4()
110 if (fill) { in unlz4()
111 size = fill(inp, 4); in unlz4()
125 if (!fill) { in unlz4()
134 if (!fill && chunksize == 0) { in unlz4()
[all …]
Ddecompress_unlzo.c113 long (*fill)(void *, unsigned long), in unlzo()
138 if (input && fill) { in unlzo()
143 } else if (!fill) { in unlzo()
158 if (fill) { in unlzo()
166 in_len = fill(in_buf, HEADER_SIZE_MAX); in unlzo()
176 if (fill) { in unlzo()
187 if (fill && in_len < 4) { in unlzo()
188 skip = fill(in_buf + in_len, 4 - in_len); in unlzo()
213 if (fill && in_len < 8) { in unlzo()
214 skip = fill(in_buf + in_len, 8 - in_len); in unlzo()
[all …]
Ddecompress_inflate.c38 long (*fill)(void*, unsigned long), in __gunzip()
84 if (!fill) in __gunzip()
85 fill = nofill; in __gunzip()
88 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
133 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
187 long (*fill)(void*, unsigned long), in gunzip()
193 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); in gunzip()
197 long (*fill)(void*, unsigned long), in __decompress()
203 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()
Ddecompress_bunzip2.c95 long (*fill)(void*, unsigned long); member
128 bd->inbufCount = bd->fill(bd->inbuf, BZIP2_IOBUF_SIZE); in get_bits()
629 long (*fill)(void*, unsigned long)) in start_bunzip()
648 if (fill != NULL) in start_bunzip()
649 bd->fill = fill; in start_bunzip()
651 bd->fill = nofill; in start_bunzip()
679 long (*fill)(void*, unsigned long), in bunzip2()
705 i = start_bunzip(&bd, inbuf, len, fill); in bunzip2()
747 long (*fill)(void*, unsigned long), in __decompress()
753 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()