Home
last modified time | relevance | path

Searched full:largest (Results 1 – 25 of 448) sorted by relevance

12345678910>>...18

/linux/samples/watch_queue/
H A Dwatch_test.c95 size_t largest, len; in consumer() local
97 largest = end - p; in consumer()
98 if (largest > 128) in consumer()
99 largest = 128; in consumer()
100 if (largest < sizeof(struct watch_notification)) { in consumer()
101 fprintf(stderr, "Short message header: %zu\n", largest); in consumer()
104 memcpy(&n, p, largest); in consumer()
110 if (len < sizeof(n.n) || len > largest) { in consumer()
111 fprintf(stderr, "Bad message length: %zu/%zu\n", len, largest); in consumer()
/linux/kernel/sched/
H A Dcpudeadline.c27 int l, r, largest; in cpudl_heapify_down() local
41 largest = idx; in cpudl_heapify_down()
46 largest = l; in cpudl_heapify_down()
51 largest = r; in cpudl_heapify_down()
53 if (largest == idx) in cpudl_heapify_down()
56 /* pull largest child onto idx */ in cpudl_heapify_down()
57 cp->elements[idx].cpu = cp->elements[largest].cpu; in cpudl_heapify_down()
58 cp->elements[idx].dl = cp->elements[largest].dl; in cpudl_heapify_down()
60 idx = largest; in cpudl_heapify_down()
/linux/drivers/scsi/
H A Dscsicam.c64 struct msdos_partition *p, *largest = NULL; in scsi_partsize() local
85 largest = p; in scsi_partsize()
89 if (largest) { in scsi_partsize()
90 end_cyl = largest->end_cyl + ((largest->end_sector & 0xc0) << 2); in scsi_partsize()
91 end_head = largest->end_head; in scsi_partsize()
92 end_sector = largest->end_sector & 0x3f; in scsi_partsize()
106 logical_end = get_unaligned_le32(&largest->start_sect) in scsi_partsize()
107 + get_unaligned_le32(&largest->nr_sects); in scsi_partsize()
/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n2-v2/
H A Dsve.json36 … speculatively executed Advanced SIMD or SVE integer operations with the largest data type an 8-bi…
40 … speculatively executed Advanced SIMD or SVE integer operations with the largest data type a 16-bi…
44 … speculatively executed Advanced SIMD or SVE integer operations with the largest data type a 32-bi…
48 … speculatively executed Advanced SIMD or SVE integer operations with the largest data type a 64-bi…
/linux/Documentation/translations/zh_CN/core-api/
H A Dwatch_queue.rst290 size_t largest, len;
292 largest = end - p;
293 if (largest > 128)
294 largest = 128;
295 memcpy(&n, p, largest);
299 if (len == 0 || len > largest)
/linux/fs/f2fs/
H A Dextent_cache.c142 if (en->ei.len <= et->largest.len) in __try_update_largest_extent()
145 et->largest = en->ei; in __try_update_largest_extent()
403 if (fofs < (pgoff_t)et->largest.fofs + et->largest.len && in __drop_largest_extent()
404 fofs + len > et->largest.fofs) { in __drop_largest_extent()
405 et->largest.len = 0; in __drop_largest_extent()
420 /* drop largest read extent */ in f2fs_init_read_extent_tree()
439 et->largest = ei; in f2fs_init_read_extent_tree()
446 et->largest = en->ei; in f2fs_init_read_extent_tree()
456 et->largest.len = 0; in f2fs_init_read_extent_tree()
497 et->largest.fofs <= pgofs && in __lookup_extent_tree()
[all …]
/linux/tools/testing/selftests/mm/
H A Dthuge-gen.c175 unsigned long largest = getpagesize(); in find_pagesizes() local
187 if (page_sizes[num_page_sizes] > largest) in find_pagesizes()
188 largest = page_sizes[i]; in find_pagesizes()
198 if (thuge_read_sysfs(0, "/proc/sys/kernel/shmmax") < NUM_PAGES * largest) in find_pagesizes()
200 largest * NUM_PAGES); in find_pagesizes()
203 if (largest != 1U<<30) { in find_pagesizes()
/linux/Documentation/core-api/
H A Dwatch_queue.rst320 size_t largest, len;
322 largest = end - p;
323 if (largest > 128)
324 largest = 128;
325 memcpy(&n, p, largest);
329 if (len == 0 || len > largest)
/linux/tools/testing/selftests/net/netfilter/
H A Dxt_string.sh111 echo "FAIL: two rules should match pattern at end of largest --to"
119 echo "FAIL: no rules should match pattern extending largest --to"
127 echo "FAIL: no rule should match pattern past largest --to"
/linux/Documentation/hwmon/
H A Dlm93.rst96 list will cause the driver to use the next largest interval. The available
151 will cause the driver to use the next largest value. Also note: when manual
161 not available will cause the driver to use the next largest value. Also note
172 combination of eight control sources. The final PWM is the largest of all
246 to use the next largest value.
259 which is not available will cause the driver to use the next largest value.
/linux/arch/m68k/fpsp040/
H A Dx_ovfl.S21 | RZ Largest magnitude number, with the sign of the
23 | RM For pos overflow, the largest pos number. For neg overflow,
25 | RP For pos overflow, +infinity. For neg overflow, the largest
H A Dutil.S42 | ;largest +ext
44 | ;largest magnitude +sgl in ext
46 | ;largest magnitude +dbl in ext
48 | ;largest -ext
/linux/drivers/input/mouse/
H A Dbyd.c147 * 0 - 7 : smallest to largest width
152 * 0 - 9 : smallest to largest height
157 * 1 - 6 : smallest to largest
162 * 0 - 7 : smallest to largest width
167 * 0 - 9 : smallest to largest height
/linux/mm/
H A Dpercpu-internal.h14 * The scan hint is the largest known contiguous area before the contig hint.
15 * It is not necessarily the actual largest contig hint though. There is an
51 size_t max_alloc_size; /* largest allocation size */
/linux/Documentation/ABI/stable/
H A Dfirewire-cdev81 buffer which is large enough to receive the largest event that
90 size, i.e. number of packets times size of largest packet,
/linux/include/linux/
H A Dzutil.h53 #define BASE 65521L /* largest prime smaller than 65536 */
55 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
/linux/arch/mips/include/asm/dec/
H A Dinterrupts.h78 /* Largest of cpu mask_nr tables. */
80 /* Largest of asic mask_nr tables. */
/linux/arch/mips/include/asm/mach-n64/
H A Dkmalloc.h5 /* The default of 128 bytes wastes too much, use 32 (the largest cacheline, I) */
/linux/tools/include/linux/
H A Dinterval_tree_generic.h134 * 'start' and largest 'last' in the tree. For the later, we \
136 * property, holds the largest value in its last-in-subtree. \
/linux/arch/loongarch/include/asm/
H A Dsparsemem.h11 #define SECTION_SIZE_BITS 29 /* 2^29 = Largest Huge Page Size */
/linux/drivers/mtd/nand/raw/atmel/
H A Dpmecc.c496 /* index of largest delta */ in atmel_pmecc_get_sigma()
498 int largest; in atmel_pmecc_get_sigma() local
566 largest = -1; in atmel_pmecc_get_sigma()
567 /* find largest delta with dmu != 0 */ in atmel_pmecc_get_sigma()
569 if ((dmu[j]) && (delta[j] > largest)) { in atmel_pmecc_get_sigma()
570 largest = delta[j]; in atmel_pmecc_get_sigma()
/linux/include/linux/platform_data/
H A Dlm8323.h12 * Largest keycode that the chip can send, plus one,
/linux/lib/crypto/mpi/
H A Dmpi-internal.h102 /* Divide the two-limb number in (NH,,NL) by D, with DI being the largest
104 * If this would yield overflow, DI should be the largest possible number
/linux/drivers/target/
H A Dtarget_core_rd.h12 /* Largest piece of memory kmalloc can allocate */
/linux/include/linux/reset/
H A Dreset-simple.h34 * be the largest minimum delay. 0 means that such a delay is

12345678910>>...18