| /tools/testing/selftests/sgx/ |
| A D | test_encl_bootstrap.S | 14 .fill 1, 8, 0 # FLAGS 17 .fill 1, 4, 1 # NSSA 20 .fill 1, 8, 0 # OFSBASE 21 .fill 1, 8, 0 # OGSBASE 23 .fill 1, 4, 0xFFFFFFFF # GSLIMIT 24 .fill 4024, 1, 0 # Reserved 28 .fill 1, 8, 0 # FLAGS 31 .fill 1, 4, 1 # NSSA 34 .fill 1, 8, 0 # OFSBASE 35 .fill 1, 8, 0 # OGSBASE [all …]
|
| /tools/testing/selftests/powerpc/copyloops/ |
| A D | validate.c | 19 void *fill) in do_one() argument 30 memcpy(srcp, fill, len); in do_one() 65 char *src, *dst, *redzone, *fill; in test_copy_loop() local 72 fill = malloc(BUFLEN); in test_copy_loop() 74 if (!src || !dst || !redzone || !fill) { in test_copy_loop() 83 fill[i] = i & 0xff; in test_copy_loop() 89 redzone, fill); in test_copy_loop()
|
| /tools/testing/selftests/exec/ |
| A D | binfmt_script.py | 46 fill="A", arg="", newline="\n", hashbang="#!"): argument 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="")
|
| /tools/testing/selftests/bpf/ |
| A D | xsk.c | 69 struct xsk_ring_prod *fill; member 164 struct xsk_ring_prod *fill, in xsk_create_umem_rings() argument 194 fill->size = umem->config.fill_size; in xsk_create_umem_rings() 197 fill->flags = map + off.fr.flags; in xsk_create_umem_rings() 198 fill->ring = map + off.fr.desc; in xsk_create_umem_rings() 269 umem->fill_save = fill; in xsk_umem__create() 523 memcpy(fill, umem->fill_save, sizeof(*fill)); in xsk_create_ctx() 532 ctx->fill = fill; in xsk_create_ctx() 543 struct xsk_ring_prod *fill, in xsk_socket__create_shared() argument 558 unmap = umem->fill_save != fill; in xsk_socket__create_shared() [all …]
|
| A D | xsk.h | 49 static inline __u64 *xsk_ring_prod__fill_addr(struct xsk_ring_prod *fill, in xsk_ring_prod__fill_addr() argument 52 __u64 *addrs = (__u64 *)fill->ring; in xsk_ring_prod__fill_addr() 54 return &addrs[idx & fill->mask]; in xsk_ring_prod__fill_addr() 221 struct xsk_ring_prod *fill, 235 struct xsk_ring_prod *fill,
|
| A D | xdp_hw_metadata.c | 61 struct xsk_ring_prod fill; member 118 &xsk->fill, in open_xsk() 143 ret = xsk_ring_prod__reserve(&xsk->fill, UMEM_NUM / 2, &idx); in open_xsk() 147 *xsk_ring_prod__fill_addr(&xsk->fill, idx + i) = addr; in open_xsk() 149 xsk_ring_prod__submit(&xsk->fill, ret); in open_xsk() 167 if (xsk_ring_prod__reserve(&xsk->fill, 1, &idx) == 1) { in refill_rx() 169 *xsk_ring_prod__fill_addr(&xsk->fill, idx) = addr; in refill_rx() 170 xsk_ring_prod__submit(&xsk->fill, 1); in refill_rx()
|
| /tools/testing/selftests/bpf/prog_tests/ |
| A D | xdp_metadata.c | 52 struct xsk_ring_prod fill; member 86 &xsk->fill, in open_xsk() 111 ret = xsk_ring_prod__reserve(&xsk->fill, UMEM_NUM / 2, &idx); in open_xsk() 120 *xsk_ring_prod__fill_addr(&xsk->fill, i) = addr; in open_xsk() 122 xsk_ring_prod__submit(&xsk->fill, ret); in open_xsk() 252 if (ASSERT_EQ(xsk_ring_prod__reserve(&xsk->fill, 1, &idx), 1, "xsk_ring_prod__reserve")) { in refill_rx() 254 *xsk_ring_prod__fill_addr(&xsk->fill, idx) = addr; in refill_rx() 255 xsk_ring_prod__submit(&xsk->fill, 1); in refill_rx()
|
| /tools/testing/selftests/x86/ |
| A D | clang_helpers_64.S | 18 .fill 4094,1,0xcc
|
| /tools/virtio/asm/ |
| A D | barrier.h | 30 #error Please fill in barrier macros
|
| /tools/testing/selftests/net/packetdrill/ |
| A D | tcp_eor_no-coalesce-retrans.pkt | 20 // Write a 10400B chunk to fill the ICW, and have a 400 byte skb sitting on 60 // TCP should fill the hole but no coalescing should happen, and all
|
| A D | tcp_eor_no-coalesce-small.pkt | 19 // Write a 10400B chunk to fill the ICW, and have a 400 byte skb sitting on
|
| A D | tcp_eor_no-coalesce-large.pkt | 20 // Write a 10400B chunk to fill the ICW, and have a 400 byte skb sitting on
|
| A D | tcp_eor_no-coalesce-subsequent.pkt | 20 // Write a 10400B chunk to fill the ICW, and have a 400 byte skb sitting on
|
| /tools/testing/selftests/filesystems/ |
| A D | utils.c | 235 int fill, left; in map_ids_from_idmap() local 258 fill = snprintf(pos, left, "%u %u %u\n", map->nsid, map->hostid, map->range); in map_ids_from_idmap() 263 if (fill <= 0 || fill >= left) in map_ids_from_idmap() 266 pos += fill; in map_ids_from_idmap()
|
| /tools/testing/selftests/hid/tests/ |
| A D | test_wacom_generic.py | 62 def fill(self, reportdata): member in ProximityState 98 def fill(self, reportdata): member in Buttons 123 def fill(self, reportdata): member in ToolID 226 buttons.fill(report) 227 proximity.fill(report) 228 toolid.fill(report)
|
| /tools/testing/selftests/vDSO/ |
| A D | vdso_test_getrandom.c | 232 static void fill(void) in fill() function 316 fill(); in main()
|
| /tools/mm/ |
| A D | slabinfo-gnuplot.sh | 90 set style fill solid 0.15
|
| A D | thpmaps | 497 paras = [textwrap.fill(p, width=docs_width) for p in paras]
|
| /tools/testing/selftests/bpf/progs/ |
| A D | iters.c | 660 static __noinline void fill(struct bpf_iter_num *it, int *arr, __u32 n, int mul) in fill() function 699 fill(&it, arr1, n, 2); in iter_pass_iter_ptr_to_subprog() 705 fill(&it, arr2, n, 10); in iter_pass_iter_ptr_to_subprog()
|
| /tools/testing/selftests/amd-pstate/ |
| A D | gitsource.sh | 300 set style fill solid 0.5 border
|
| A D | tbench.sh | 282 set style fill solid 0.5 border
|
| /tools/power/pm-graph/ |
| A D | README | 157 subsystem dependent calls to better fill out the timeline. 431 The tool uses an array of function names to fill out empty spaces in the 434 in the timeline to show you where the time is going. These calls should fill
|