Home
last modified time | relevance | path

Searched refs:small (Results 1 – 25 of 301) sorted by relevance

12345678910>>...13

/linux/tools/testing/selftests/bpf/libarena/selftests/
H A Dtest_bitmap.bpf.c288 struct arena_bitmap __arena *big = NULL, *small = NULL; in test_bitmap_subset() local
291 small = bmp_alloc(TEST_BITS); in test_bitmap_subset()
292 if (!big || !small) in test_bitmap_subset()
295 if (!bmp_subset(TEST_BITS, big, small)) in test_bitmap_subset()
298 __bmp_set_bit(0, small); in test_bitmap_subset()
299 if (bmp_subset(TEST_BITS, big, small)) in test_bitmap_subset()
303 if (!bmp_subset(TEST_BITS, big, small)) in test_bitmap_subset()
306 __bmp_set_bit(LAST_BIT, small); in test_bitmap_subset()
307 if (bmp_subset(TEST_BITS, big, small)) in test_bitmap_subset()
312 if (!bmp_subset(TEST_BITS, big, small)) in test_bitmap_subset()
[all …]
/linux/lib/test_fortify/
H A Dtest_fortify.h22 char small[__BUF_SMALL]; variable
31 memset(small, 0xA5, sizeof(small)); in do_fortify_tests()
H A Dread_overflow-memchr.c3 memchr(small, 0x7A, sizeof(small) + 1)
H A Dread_overflow-memchr_inv.c3 memchr_inv(small, 0x7A, sizeof(small) + 1)
H A Dread_overflow-memscan.c3 memscan(small, 0x7A, sizeof(small) + 1)
H A Dread_overflow2-memcmp.c3 memcmp(large, small, sizeof(small) + 1)
H A Dread_overflow-memcmp.c3 memcmp(small, large, sizeof(small) + 1)
H A Dwrite_overflow-strcpy-lit.c3 strcpy(small, LITERAL_LARGE)
H A Dwrite_overflow-strcpy.c3 strcpy(small, large_src)
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_global_func10.c32 const struct Small small = {.x = skb->len }; in global_func10() local
34 return foo((struct Big *)&small) ? 1 : 0; in global_func10()
/linux/tools/testing/selftests/net/mptcp/
H A Dsimult_flows.sh23 small=""
43 rm -f "$large" "$small"
61 small=$(mktemp)
67 dd if=/dev/zero of=$small bs=4096 count=20 >/dev/null 2>&1
265 do_transfer $small $large $time
275 do_transfer $large $small $time
/linux/net/dccp/ccids/lib/
H A Dtfrc_equation.c
/linux/fs/cramfs/
H A DKconfig7 System). CramFs is designed to be a simple, small, and compressed
20 purpose to remain small and low on RAM usage. It is most suitable
21 for small embedded systems. If you have ample RAM to spare, you may
/linux/arch/alpha/lib/
H A Dev6-copy_user.S50 subq $18, 32, $1 # .. .. E. .. : Is this going to be a small copy?
55 ble $1, $onebyteloop # .. .. U .. : 1st branch : small amount of data
131 subq $4, 32, $2 # .. .. .. E : do not unroll for small stuff
/linux/Documentation/filesystems/
H A Dromfs.rst10 similar feature, and even the possibility of a small kernel, with a
30 However, the main purpose of romfs is to have a very small kernel,
41 module. The kernel can be small enough, since it doesn't have other
154 this file system is the small code. On the other hand, don't be
171 - The file system is read only, so it can be very small, but in case
175 similarly small writable filesystem for RAM disks.
/linux/Documentation/trace/
H A Devents-kmem.rst8 - Slab allocation of small objects of unknown type (kmalloc)
9 - Slab allocation of small objects of known type
17 1. Slab allocation of small objects of unknown type
32 2. Slab allocation of small objects of known type
/linux/Documentation/gpu/rfc/
H A Di915_small_bar.rst14 underneath the device has a small BAR, meaning only some portion of it is CPU
41 1) Error capture is best effort on small BAR systems; if the pages are not
/linux/Documentation/ABI/testing/
H A Dsysfs-class-chromeos-driver-cros-ec-vbc6 small nvram space on some EC implementations.
H A Dsysfs-bus-iio-light-si11336 dark photodiode. "small" indicate the surface area capturing
/linux/Documentation/sphinx-static/
H A Dcustom.css71 div.kerneltoc li.toctree-l2,li.toctree-l3 { font-size: small;
94 * The CSS magic to toggle the contents on small screens.
107 * Show and implement the toggle on small screens.
/linux/arch/arm/mach-lpc32xx/
H A Dsuspend.S51 @ This guarantees a small windows where DRAM isn't busy
/linux/Documentation/translations/zh_CN/mm/damon/
H A Ddesign.rst59 (small mmap()-ed regions and munmap()-ed regions)
/linux/Documentation/arch/arm/sa1100/
H A Dlart.rst5 The LART is a small (7.5 x 10cm) SA-1100 board, designed for embedded
/linux/tools/testing/selftests/net/packetdrill/
H A Dtcp_zerocopy_small.pkt2 // small packet zerocopy test:
/linux/tools/testing/selftests/bpf/libarena/src/
H A Dbitmap.bpf.c206 bool bmp_subset(size_t bits, struct arena_bitmap __arena *big, struct arena_bitmap __arena *small) in bmp_subset() argument
214 if (~big->bits[i] & small->bits[i] & mask) in bmp_subset()

12345678910>>...13