Searched refs:fill (Results 26 - 50 of 142) sorted by relevance

123456

/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...]
/linux-master/tools/testing/selftests/exec/
H A Dbinfmt_script.py42 # @fill: character to fill between @root and @target to reach @size bytes
46 fill="A", arg="", newline="\n", hashbang="#!"):
57 middle += fill * (NAME_MAX - 1)
60 middle += fill * remaining
124 fill=" ", target="")
129 fill="", target="", newline="")
131 test(name="spaces", size=SIZE-1, good=False, root="", fill=" ",
135 root="", fill=" ", target="")
/linux-master/tools/virtio/asm/
H A Dbarrier.h30 #error Please fill in barrier macros
/linux-master/tools/testing/selftests/bpf/
H A Dxsk.c69 struct xsk_ring_prod *fill; member in struct:xsk_ctx
164 struct xsk_ring_prod *fill,
193 fill->mask = umem->config.fill_size - 1;
194 fill->size = umem->config.fill_size;
195 fill->producer = map + off.fr.producer;
196 fill->consumer = map + off.fr.consumer;
197 fill->flags = map + off.fr.flags;
198 fill->ring = map + off.fr.desc;
199 fill->cached_cons = umem->config.fill_size;
224 __u64 size, struct xsk_ring_prod *fill,
163 xsk_create_umem_rings(struct xsk_umem *umem, int fd, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp) argument
223 xsk_umem__create(struct xsk_umem **umem_ptr, void *umem_area, __u64 size, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp, const struct xsk_umem_config *usr_config) argument
502 xsk_create_ctx(struct xsk_socket *xsk, struct xsk_umem *umem, int ifindex, __u32 queue_id, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp) argument
538 xsk_socket__create_shared(struct xsk_socket **xsk_ptr, int ifindex, __u32 queue_id, struct xsk_umem *umem, struct xsk_ring_cons *rx, struct xsk_ring_prod *tx, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp, const struct xsk_socket_config *usr_config) argument
[all...]
H A Dxsk.h49 static inline __u64 *xsk_ring_prod__fill_addr(struct xsk_ring_prod *fill, argument
52 __u64 *addrs = (__u64 *)fill->ring;
54 return &addrs[idx & fill->mask];
221 struct xsk_ring_prod *fill,
235 struct xsk_ring_prod *fill,
H A Dxdp_hw_metadata.c51 struct xsk_ring_prod fill; member in struct:xsk
96 &xsk->fill,
121 ret = xsk_ring_prod__reserve(&xsk->fill, UMEM_NUM / 2, &idx);
125 *xsk_ring_prod__fill_addr(&xsk->fill, idx + i) = addr;
127 xsk_ring_prod__submit(&xsk->fill, ret);
145 if (xsk_ring_prod__reserve(&xsk->fill, 1, &idx) == 1) {
147 *xsk_ring_prod__fill_addr(&xsk->fill, idx) = addr;
148 xsk_ring_prod__submit(&xsk->fill, 1);
/linux-master/lib/
H A Ddecompress_bunzip2.c96 long (*fill)(void*, unsigned long); member in struct:bunzip_data
129 bd->inbufCount = bd->fill(bd->inbuf, BZIP2_IOBUF_SIZE);
630 long (*fill)(void*, unsigned long))
649 if (fill != NULL)
650 bd->fill = fill;
652 bd->fill = nofill;
680 long (*fill)(void*, unsigned long),
706 i = start_bunzip(&bd, inbuf, len, fill);
748 long (*fill)(voi
629 start_bunzip(struct bunzip_data **bdp, void *inbuf, long len, long (*fill)(void*, unsigned long)) argument
679 bunzip2(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *outbuf, long *pos, void(*error)(char *x)) argument
747 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *outbuf, long olen, long *pos, void (*error)(char *x)) argument
[all...]
H A Dstackinit_kunit.c30 /* Location and size tracking to validate fill and test are colocated. */
187 "leaf fill was not 0xFF!?\n"); \
189 /* Validate that compiler lined up fill and target. */ \
194 "(fill %zu wide, target offset by %d)\n", \
221 static noinline int leaf_ ## name(unsigned long sp, bool fill, \
236 if (fill) { \
366 static int noinline __leaf_switch_none(int path, bool fill) argument
378 if (fill) {
389 if (fill) {
404 static noinline int leaf_switch_1_none(unsigned long sp, bool fill, argument
410 leaf_switch_2_none(unsigned long sp, bool fill, uint64_t *arg) argument
[all...]
H A Ddecompress_unlzma.c68 long (*fill)(void*, unsigned long); member in struct:rc
93 rc->buffer_size = rc->fill((char *)rc->buffer, LZMA_IOBUF_SIZE);
102 long (*fill)(void*, unsigned long),
105 if (fill)
106 rc->fill = fill;
108 rc->fill = nofill;
538 long (*fill)(void*, unsigned long),
578 rc_init(&rc, fill, inbuf, in_len);
671 long (*fill)(voi
101 rc_init(struct rc *rc, long (*fill)(void*, unsigned long), char *buffer, long buffer_size) argument
537 unlzma(unsigned char *buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *output, long *posp, void(*error)(char *x) ) argument
670 __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...]
/linux-master/drivers/net/ethernet/pasemi/
H A Dpasemi_mac.c520 /* Compensate for when fill has wrapped and clean has not */
581 int fill, count; local
586 fill = rx_ring(mac)->next_to_fill;
588 struct pasemi_mac_buffer *info = &RX_DESC_INFO(rx, fill);
589 u64 *buff = &RX_BUFF(rx, fill);
614 fill++;
838 /* Compensate for when fill has wrapped but clean has not */
871 /* Since we always fill with an even number of entries, make
1351 int cs_size, i, fill, hdr, evt; local
1375 fill
1437 int fill; local
[all...]
/linux-master/drivers/scsi/libfc/
H A Dfc_libfc.c146 * fc_fill_hdr() - fill FC header fields based on request
160 u32 fill; local
166 fill = -fr_len(fp) & 3;
167 if (fill) {
169 skb_put_zero(fp_skb(fp), fill); local
170 f_ctl |= fill;
204 * fc_fill_reply_hdr() - fill FC reply header fields based on request
/linux-master/arch/sparc/kernel/
H A Ditlb_miss.S18 nop ! Delay slot, fill me
/linux-master/arch/s390/boot/
H A Dipl_data.c17 u8 fill[56]; /* 0x0018 */ member in struct:ipl_lowcore
44 * that to succeed the two initial CCWs, and the 0x40 fill bytes must
53 .fill = {
/linux-master/drivers/crypto/
H A Dmxs-dcp.c94 uint32_t fill; member in struct:dcp_async_ctx
255 if (actx->fill % AES_BLOCK_SIZE) {
291 desc->size = actx->fill;
335 actx->fill = 0;
359 if (actx->fill + len > out_off)
360 clen = out_off - actx->fill;
364 memcpy(in_buf + actx->fill, src_buf, clen);
367 actx->fill += clen;
373 if (actx->fill == out_off || sg_is_last(src) ||
381 actx->fill, dst_of
[all...]
/linux-master/arch/x86/crypto/
H A Daegis128-aesni-glue.c86 unsigned int fill = AEGIS128_BLOCK_SIZE - pos; local
87 memcpy(buf.bytes + pos, src, fill);
92 left -= fill;
93 src += fill;
/linux-master/arch/alpha/lib/
H A Dstrncat.S64 0: cmplt $27, $24, $2 # did we fill the buffer completely?
H A Dev67-strncat.S63 cmplt $27, $24, $5 # E : did we fill the buffer completely?
/linux-master/drivers/char/xillybus/
H A Dxillyusb.c75 int fill; /* Number of bytes in the FIFO */ member in struct:xillyfifo
235 nmax = fifo->size - READ_ONCE(fifo->fill);
243 fifo->fill += done;
282 unsigned int fill; local
289 * The spinlock here is necessary, because otherwise fifo->fill
292 * visible on this thread at the time the updated fifo->fill was.
297 fill = fifo->fill;
302 unsigned int n = min(todo, fill);
306 fifo->fill
774 unsigned int fill; local
[all...]
/linux-master/arch/sh/lib/
H A Dmemset.S52 ! fill bytes
/linux-master/drivers/isdn/hardware/mISDN/
H A Dhfc_pci.h189 u_char fill[0x2100 - 0x2082]; /* alignment */ member in struct:bzfifo
210 u_char fill[32768]; member in union:fifo_area
/linux-master/arch/x86/platform/pvh/
H A Dhead.S160 SYM_DATA_LOCAL(canary, .fill 48, 1, 0)
163 .fill BOOT_STACK_SIZE, 1, 0
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dxdp_metadata.c52 struct xsk_ring_prod fill; member in struct:xsk
85 &xsk->fill,
110 ret = xsk_ring_prod__reserve(&xsk->fill, UMEM_NUM / 2, &idx);
113 if (!ASSERT_EQ(idx, 0, "fill idx != 0"))
119 *xsk_ring_prod__fill_addr(&xsk->fill, i) = addr;
121 xsk_ring_prod__submit(&xsk->fill, ret);
268 if (ASSERT_EQ(xsk_ring_prod__reserve(&xsk->fill, 1, &idx), 1, "xsk_ring_prod__reserve")) {
270 *xsk_ring_prod__fill_addr(&xsk->fill, idx) = addr;
271 xsk_ring_prod__submit(&xsk->fill, 1);
/linux-master/drivers/crypto/allwinner/sun8i-ce/
H A Dsun8i-ce-hash.c274 u64 fill, min_fill, j, k; local
282 fill = 64 - (byte_count % 64);
285 fill = 128 - (byte_count % 128);
289 if (fill < min_fill)
290 fill += bs;
293 j += (fill - min_fill) / sizeof(u32);
/linux-master/include/linux/
H A Dmroute_base.h292 int (*fill)(struct mr_table *mrt, struct sk_buff *skb,
299 int (*fill)(struct mr_table *mrt,
350 int (*fill)(struct mr_table *mrt,
/linux-master/arch/mips/kernel/
H A Dvmlinux.lds.S177 .fill : {

Completed in 215 milliseconds

123456