Searched refs:fill (Results 1 - 25 of 141) sorted by relevance

123456

/linux-master/include/linux/decompress/
H A Dunlzma.h6 long (*fill)(void*, unsigned long),
H A Dunlzo.h6 long (*fill)(void*, unsigned long),
H A Dinflate.h6 long (*fill)(void*, unsigned long),
H A Dbunzip2.h6 long (*fill)(void*, unsigned long),
H A Dunlz4.h6 long (*fill)(void*, unsigned long),
H A Dunzstd.h6 long (*fill)(void*, unsigned long),
H A Dunxz.h14 long (*fill)(void *dest, unsigned long size),
H A Dgeneric.h6 long (*fill)(void*, unsigned long),
14 *fill - function to fill inbuf when empty
20 *If len != 0, inbuf should contain all the necessary input data, and fill
24 *fill will be called (repeatedly...) to read data, at most XXX_IOBUF_SIZE
/linux-master/tools/testing/selftests/sgx/
H A Dtest_encl_bootstrap.S13 .fill 1, 8, 0 # STATE (set by CPU)
14 .fill 1, 8, 0 # FLAGS
16 .fill 1, 4, 0 # CSSA (set by CPU)
17 .fill 1, 4, 1 # NSSA
19 .fill 1, 8, 0 # AEP (set by EENTER and ERESUME)
20 .fill 1, 8, 0 # OFSBASE
21 .fill 1, 8, 0 # OGSBASE
22 .fill 1, 4, 0xFFFFFFFF # FSLIMIT
23 .fill 1, 4, 0xFFFFFFFF # GSLIMIT
24 .fill 402
[all...]
/linux-master/drivers/scsi/libfc/
H A Dfc_frame.c31 len = (fr_len(fp) + 3) & ~3; /* round up length to include fill */
65 size_t fill; local
67 fill = payload_len % 4;
68 if (fill != 0)
69 fill = 4 - fill;
70 fp = _fc_frame_alloc(payload_len + fill);
72 memset((char *) fr_hdr(fp) + payload_len, 0, fill);
/linux-master/lib/
H A Ddecompress_unlzo.c98 long (*fill)(void *, unsigned long),
123 if (input && fill) {
124 error("Both input pointer and fill function provided, don't know what to do");
128 } else if (!fill) {
129 error("NULL input pointer and missing fill function");
143 if (fill) {
151 in_len = fill(in_buf, HEADER_SIZE_MAX);
161 if (fill) {
172 if (fill && in_len < 4) {
173 skip = fill(in_bu
277 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long olen, long *pos, void (*error)(char *x)) argument
[all...]
H A Ddecompress_unlz4.c32 long (*fill)(void *, unsigned long),
63 if (input && fill) {
64 error("Both input pointer and fill function provided,");
68 } else if (!fill) {
69 error("NULL input pointer and missing fill function");
83 if (fill) {
84 size = fill(inp, 4);
93 if (!fill) {
107 if (fill) {
108 size = fill(in
207 __decompress(unsigned char *buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *output, long out_len, long *posp, void (*error)(char *x) ) argument
[all...]
H A Ddecompress_inflate.c43 long (*fill)(void*, unsigned long),
94 if (!fill)
95 fill = nofill;
98 len = fill(zbuf, GZIP_IOBUF_SIZE);
146 /* TODO: handle case where both pos and fill are set */
147 len = fill(zbuf, GZIP_IOBUF_SIZE);
201 long (*fill)(void*, unsigned long),
207 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error);
211 long (*fill)(void*, unsigned long),
217 return __gunzip(buf, len, fill, flus
42 __gunzip(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void(*error)(char *x)) argument
200 gunzip(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long *pos, void (*error)(char *x)) argument
210 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) argument
[all...]
H A Ddecompress_unxz.c248 * fill() and flush() won't be used.
251 long (*fill)(void *dest, unsigned long size),
268 if (fill == NULL && flush == NULL)
298 if (fill == NULL && flush == NULL) {
302 if (b.in_pos == b.in_size && fill != NULL) {
308 in_size = fill(in, XZ_IOBUF_SIZE);
398 long (*fill)(void*, unsigned long),
404 return unxz(buf, len, fill, flush, out_buf, pos, error);
397 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long olen, long *pos, void (*error)(char *x)) argument
H A Ddecompress_unzstd.c166 long (*fill)(void*, unsigned long),
191 if (fill == NULL && flush == NULL)
200 * If in_buf is not provided, we must be using fill(), so allocate
215 if (fill != NULL)
216 in_len = fill(in_buf, ZSTD_IOBUF_SIZE);
287 * If we need to reload data, either we have fill() and can
293 in_len = fill ? fill(in_buf, ZSTD_IOBUF_SIZE) : -1;
334 long (*fill)(void*, unsigned long),
340 return __unzstd(buf, len, fill, flus
165 __unzstd(unsigned char *in_buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *in_pos, void (*error)(char *x)) argument
333 unzstd(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long *pos, void (*error)(char *x)) argument
343 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) argument
[all...]
H A Dbtree.c413 int fill; local
419 fill = getfill(geo, head->node, 0);
420 setkey(geo, node, 0, bkey(geo, head->node, fill - 1));
431 int fill; local
437 fill = getfill(geo, node, 0);
438 BUG_ON(fill > 1);
449 int i, pos, fill, err; local
461 fill = getfill(geo, node, pos);
463 BUG_ON(pos < fill && keycmp(geo, node, pos, key) == 0);
465 if (fill
536 rebalance(struct btree_head *head, struct btree_geo *geo, unsigned long *key, int level, unsigned long *child, int fill) argument
591 int i, pos, fill; local
[all...]
/linux-master/tools/testing/selftests/powerpc/copyloops/
H A Dvalidate.c19 void *fill)
30 memcpy(srcp, fill, len);
65 char *src, *dst, *redzone, *fill; local
72 fill = malloc(BUFLEN);
74 if (!src || !dst || !redzone || !fill) {
83 fill[i] = i & 0xff;
89 redzone, fill);
17 do_one(char *src, char *dst, unsigned long src_off, unsigned long dst_off, unsigned long len, void *redzone, void *fill) argument
/linux-master/lib/crypto/
H A Dblake2s.c26 const size_t fill = BLAKE2S_BLOCK_SIZE - state->buflen; local
30 if (inlen > fill) {
31 memcpy(state->buf + state->buflen, in, fill);
34 in += fill;
35 inlen -= fill;
/linux-master/include/crypto/internal/
H A Dblake2b.h29 const size_t fill = BLAKE2B_BLOCK_SIZE - state->buflen; local
33 if (inlen > fill) {
34 memcpy(state->buf + state->buflen, in, fill);
37 in += fill;
38 inlen -= fill;
/linux-master/lib/zlib_inflate/
H A Dinftrees.c36 unsigned fill; /* index for replicating entries */ local
136 Create and fill in decoding tables. In this loop, the table being
141 fill the table with replicated entries.
190 next = *table; /* current table to fill in */
220 fill = 1U << curr;
221 min = fill; /* save offset to next table */
223 fill -= incr;
224 next[(huff >> drop) + fill] = this;
225 } while (fill != 0);
282 drops back to the root table to fill i
[all...]
/linux-master/certs/
H A Dsystem_certificates.S21 .fill CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE, 1, 0
/linux-master/drivers/misc/sgi-gru/
H A Dgrulib.h121 char fill[10]; member in struct:gru_dump_chiplet_state_req
150 int fill[16]; member in struct:gru_config_info
/linux-master/arch/loongarch/include/asm/
H A Dalternative-asm.h26 * @newinstr. ".fill" directive takes care of proper instruction padding
33 .fill - (((144f-143f)-(141b-140b)) > 0) * ((144f-143f)-(141b-140b)) / 4, 4, 0x03400000
62 .fill - ((alt_max_short(new_len1, new_len2) - (old_len)) > 0) * \
/linux-master/arch/x86/kernel/
H A Dhead_64.S505 .fill early_idt_handler_array + i*EARLY_IDT_HANDLER_SIZE - ., 1, 0xcc
616 .fill 511,8,0
618 .fill PTI_USER_PGD_FILL,8,0
622 .fill 512*EARLY_DYNAMIC_PAGE_TABLES,8,0
637 .fill PTI_USER_PGD_FILL,8,0
642 .fill 511, 8, 0
657 .fill 512,8,0
658 .fill PTI_USER_PGD_FILL,8,0
664 .fill 511,8,0
670 .fill L3_START_KERNE
[all...]
/linux-master/net/netfilter/
H A Dnft_set_pipapo_avx2.c89 * @len: Count of bits to fill
188 * @fill: Destination bitmap to be filled with current match result
200 * working bitmap, @fill.
214 static int nft_pipapo_avx2_lookup_4b_2(unsigned long *map, unsigned long *fill, argument
243 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
263 * @fill: Destination bitmap to be filled with current match result
277 static int nft_pipapo_avx2_lookup_4b_4(unsigned long *map, unsigned long *fill, argument
320 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
340 * @fill: Destination bitmap to be filled with current match result
354 static int nft_pipapo_avx2_lookup_4b_8(unsigned long *map, unsigned long *fill, argument
450 nft_pipapo_avx2_lookup_4b_12(unsigned long *map, unsigned long *fill, const struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) argument
540 nft_pipapo_avx2_lookup_4b_32(unsigned long *map, unsigned long *fill, const struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) argument
676 nft_pipapo_avx2_lookup_8b_1(unsigned long *map, unsigned long *fill, const struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) argument
734 nft_pipapo_avx2_lookup_8b_2(unsigned long *map, unsigned long *fill, const struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) argument
799 nft_pipapo_avx2_lookup_8b_4(unsigned long *map, unsigned long *fill, const struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) argument
875 nft_pipapo_avx2_lookup_8b_6(unsigned long *map, unsigned long *fill, const struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) argument
961 nft_pipapo_avx2_lookup_8b_16(unsigned long *map, unsigned long *fill, const struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) argument
1054 nft_pipapo_avx2_lookup_slow(unsigned long *map, unsigned long *fill, const struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) argument
1136 unsigned long *res, *fill; local
[all...]

Completed in 194 milliseconds

123456