| /kernel/linux/linux-6.6/samples/watch_queue/ |
| D | watch_test.c | 95 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()
|
| /kernel/linux/linux-5.10/samples/watch_queue/ |
| D | watch_test.c | 95 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()
|
| /kernel/linux/linux-6.6/kernel/sched/ |
| D | cpudeadline.c | 27 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()
|
| /kernel/linux/linux-6.6/tools/perf/pmu-events/arch/arm64/arm/neoverse-n2-v2/ |
| D | sve.json | 36 … 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…
|
| /kernel/linux/linux-5.10/kernel/sched/ |
| D | cpudeadline.c | 28 int l, r, largest; in cpudl_heapify_down() local 42 largest = idx; in cpudl_heapify_down() 47 largest = l; in cpudl_heapify_down() 52 largest = r; in cpudl_heapify_down() 54 if (largest == idx) in cpudl_heapify_down() 57 /* pull largest child onto idx */ in cpudl_heapify_down() 58 cp->elements[idx].cpu = cp->elements[largest].cpu; in cpudl_heapify_down() 59 cp->elements[idx].dl = cp->elements[largest].dl; in cpudl_heapify_down() 61 idx = largest; in cpudl_heapify_down()
|
| /kernel/linux/linux-6.6/drivers/scsi/ |
| D | scsicam.c | 64 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()
|
| /kernel/linux/linux-5.10/drivers/scsi/ |
| D | scsicam.c | 65 struct msdos_partition *p, *largest = NULL; in scsi_partsize() local 86 largest = p; in scsi_partsize() 90 if (largest) { in scsi_partsize() 91 end_cyl = largest->end_cyl + ((largest->end_sector & 0xc0) << 2); in scsi_partsize() 92 end_head = largest->end_head; in scsi_partsize() 93 end_sector = largest->end_sector & 0x3f; in scsi_partsize() 107 logical_end = get_unaligned_le32(&largest->start_sect) in scsi_partsize() 108 + get_unaligned_le32(&largest->nr_sects); in scsi_partsize()
|
| /kernel/linux/linux-6.6/Documentation/translations/zh_CN/core-api/ |
| D | watch_queue.rst | 290 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)
|
| /kernel/linux/linux-5.10/fs/f2fs/ |
| D | extent_cache.c | 327 et->largest = en->ei; in __init_extent_tree() 353 if (fofs < et->largest.fofs + et->largest.len && in __drop_largest_extent() 354 fofs + len > et->largest.fofs) { in __drop_largest_extent() 355 et->largest.len = 0; in __drop_largest_extent() 370 /* drop largest extent */ in __f2fs_init_extent_tree() 424 if (et->largest.fofs <= pgofs && in f2fs_lookup_extent_tree() 425 et->largest.fofs + et->largest.len > pgofs) { in f2fs_lookup_extent_tree() 426 *ei = et->largest; in f2fs_lookup_extent_tree() 556 prev = et->largest; in f2fs_update_extent_tree_range() 560 * drop largest extent before lookup, in case it's already in f2fs_update_extent_tree_range() [all …]
|
| /kernel/linux/linux-6.6/tools/testing/selftests/mm/ |
| D | thuge-gen.c | 181 unsigned long largest = getpagesize(); in sanity_checks() local 184 if (page_sizes[i] > largest) in sanity_checks() 185 largest = page_sizes[i]; in sanity_checks() 195 if (read_sysfs(0, "/proc/sys/kernel/shmmax") < NUM_PAGES * largest) { in sanity_checks() 196 printf("Please do echo %lu > /proc/sys/kernel/shmmax", largest * NUM_PAGES); in sanity_checks() 201 if (largest != 1U<<30) { in sanity_checks()
|
| /kernel/linux/linux-6.6/fs/f2fs/ |
| D | extent_cache.c | 110 if (en->ei.len <= et->largest.len) in __try_update_largest_extent() 113 et->largest = en->ei; in __try_update_largest_extent() 371 if (fofs < (pgoff_t)et->largest.fofs + et->largest.len && in __drop_largest_extent() 372 fofs + len > et->largest.fofs) { in __drop_largest_extent() 373 et->largest.len = 0; in __drop_largest_extent() 388 /* drop largest read extent */ in f2fs_init_read_extent_tree() 409 et->largest = en->ei; in f2fs_init_read_extent_tree() 419 et->largest.len = 0; in f2fs_init_read_extent_tree() 460 et->largest.fofs <= pgofs && in __lookup_extent_tree() 461 (pgoff_t)et->largest.fofs + et->largest.len > pgofs) { in __lookup_extent_tree() [all …]
|
| /kernel/linux/linux-5.10/tools/testing/selftests/vm/ |
| D | thuge-gen.c | 198 unsigned long largest = getpagesize(); in sanity_checks() local 201 if (page_sizes[i] > largest) in sanity_checks() 202 largest = page_sizes[i]; in sanity_checks() 212 if (read_sysfs(0, "/proc/sys/kernel/shmmax") < NUM_PAGES * largest) { in sanity_checks() 213 printf("Please do echo %lu > /proc/sys/kernel/shmmax", largest * NUM_PAGES); in sanity_checks() 218 if (largest != 1U<<30) { in sanity_checks()
|
| /kernel/linux/linux-5.10/Documentation/ |
| D | watch_queue.rst | 320 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)
|
| /kernel/linux/linux-6.6/Documentation/core-api/ |
| D | watch_queue.rst | 320 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)
|
| /kernel/linux/linux-6.6/tools/testing/selftests/netfilter/ |
| D | xt_string.sh | 107 echo "FAIL: two rules should match pattern at end of largest --to" 115 echo "FAIL: no rules should match pattern extending largest --to" 123 echo "FAIL: no rule should match pattern past largest --to"
|
| /kernel/linux/linux-6.6/Documentation/hwmon/ |
| D | lm93.rst | 96 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.
|
| /kernel/linux/linux-5.10/Documentation/hwmon/ |
| D | lm93.rst | 96 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.
|
| /kernel/linux/linux-5.10/arch/c6x/ |
| D | Kconfig | 93 pages. This option selects the largest power of two that the kernel 99 a value of 11 means that the largest free memory block is 2^10 pages.
|
| /kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
| D | x_ovfl.S | 21 | 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
|
| /kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
| D | x_ovfl.S | 21 | 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
|
| /kernel/linux/linux-6.6/drivers/input/mouse/ |
| D | byd.c | 147 * 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
|
| /kernel/linux/linux-5.10/drivers/input/mouse/ |
| D | byd.c | 147 * 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
|
| /kernel/linux/linux-5.10/mm/ |
| D | percpu-internal.h | 32 * The scan hint is the largest known contiguous area before the contig hint. 33 * It is not necessarily the actual largest contig hint though. There is an 56 size_t max_alloc_size; /* largest allocation size */
|
| /kernel/linux/linux-6.6/mm/ |
| D | percpu-internal.h | 14 * 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 38 size_t max_alloc_size; /* largest allocation size */
|
| /kernel/linux/linux-6.6/Documentation/ABI/stable/ |
| D | firewire-cdev | 81 buffer which is large enough to receive the largest event that 90 size, i.e. number of packets times size of largest packet,
|