Home
last modified time | relevance | path

Searched refs:maxgap (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/lgpl3/gmp/dist/demos/
H A Dprimes.c71 unsigned long maxgap = 0; variable
90 if (maxgap < gap) in report()
91 maxgap = gap; in report()
232 printf ("max gap: %lu\n", maxgap); in main()
/netbsd-src/sys/uvm/
H A Duvm_map.c385 vsize_t maxgap = entry->gap; in uvm_rb_maxgap()
388 * We need maxgap to be the largest gap of us or any of our in uvm_rb_maxgap()
389 * descendents. Since each of our children's maxgap is the in uvm_rb_maxgap()
394 if ((child = LEFT_ENTRY(entry)) != NULL && maxgap < child->maxgap) in uvm_rb_fixup()
395 maxgap = child->maxgap; in uvm_rb_fixup()
397 if ((child = RIGHT_ENTRY(entry)) != NULL && maxgap < child->maxgap) in uvm_rb_fixup()
398 maxgap in uvm_rb_fixup()
373 vsize_t maxgap = entry->gap; uvm_rb_maxgap() local
401 vsize_t maxgap = parent->gap; uvm_rb_fixup() local
[all...]
H A Duvm_map.h138 vsize_t maxgap; /* space in subtree */ member
/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Dvdev_queue.c651 uint64_t maxgap = 0; in vdev_queue_aggregate() local
665 maxgap = zfs_vdev_read_gap_limit; in vdev_queue_aggregate()
691 IO_GAP(dio, first) <= maxgap) { in vdev_queue_aggregate()
711 IO_GAP(last, dio) <= maxgap) { in vdev_queue_aggregate()
/netbsd-src/usr.bin/pmap/
H A Dpmap.c367 printf(" maxgap = %#"PRIxVSIZE",\n", vme->maxgap); in dump_vm_map_entry()