Symbol: uvm_physseg_get_last
sys/arch/aarch64/aarch64/pmap_machdep.c
518
pmap_limits.avail_end = ptoa(uvm_physseg_get_end(uvm_physseg_get_last()));
sys/arch/alpha/alpha/machdep.c
678
bank = uvm_physseg_get_last();
sys/arch/alpha/alpha/pmap.c
1302
avail_end = ptoa(uvm_physseg_get_avail_end(uvm_physseg_get_last()));
sys/arch/alpha/pci/cia_dma.c
154
if (uvm_physseg_get_avail_end(uvm_physseg_get_last()) >
sys/arch/alpha/pci/tsp_dma.c
214
if (uvm_physseg_get_avail_end(uvm_physseg_get_last()) >
sys/arch/arm/arm32/pmap.c
6658
avail_end = ptoa(uvm_physseg_get_avail_end(uvm_physseg_get_last()));
sys/arch/ia64/ia64/pmap.c
1414
uvm_physseg_get_first() == uvm_physseg_get_last() /* single segment */) {
sys/arch/mips/mips/mips_machdep.c
2094
uvm_physseg_t bank = uvm_physseg_get_last();
sys/arch/mips/mips/pmap_machdep.c
413
pmap_limits.avail_end = ptoa(uvm_physseg_get_end(uvm_physseg_get_last()));
sys/arch/powerpc/booke/booke_pmap.c
201
pmap_limits.avail_end = uvm_physseg_get_end(uvm_physseg_get_last()) << PGSHIFT;
sys/arch/riscv/riscv/pmap_machdep.c
379
pmap_limits.avail_end = ptoa(uvm_physseg_get_end(uvm_physseg_get_last()));
sys/arch/sh3/sh3/pmap.c
112
avail_end = ptoa(uvm_physseg_get_end(uvm_physseg_get_last()));
sys/uvm/uvm_page.c
364
if (uvm_physseg_get_last() == UVM_PHYSSEG_TYPE_INVALID)
sys/uvm/uvm_page.c
634
for (lcv = uvm_physseg_get_last(); uvm_physseg_valid_p(lcv); lcv = uvm_physseg_get_prev(lcv))
sys/uvm/uvm_page.c
649
for (lcv = uvm_physseg_get_last(); uvm_physseg_valid_p(lcv); lcv = uvm_physseg_get_prev(lcv))
sys/uvm/uvm_pglist.c
474
for (psi = uvm_physseg_get_last(); uvm_physseg_valid_p(psi); psi = uvm_physseg_get_prev(psi))
sys/uvm/uvm_pglist.c
639
for (psi = uvm_physseg_get_last(); uvm_physseg_valid_p(psi); psi = uvm_physseg_get_prev(psi))
sys/uvm/uvm_physseg.h
119
uvm_physseg_t uvm_physseg_get_last(void);
sys/uvm/uvm_physseg.h
83
#define UVM_PHYSSEG_TYPE_INVALID_OVERFLOW (uvm_physseg_get_last() + 1) /* ran off the end of the last segment */
tests/sys/uvm/t_uvm_physseg.c
1420
ATF_TC(uvm_physseg_get_last);
tests/sys/uvm/t_uvm_physseg.c
1421
ATF_TC_HEAD(uvm_physseg_get_last, tc)
tests/sys/uvm/t_uvm_physseg.c
1426
ATF_TC_BODY(uvm_physseg_get_last, tc)
tests/sys/uvm/t_uvm_physseg.c
1434
ATF_CHECK_EQ(upm, uvm_physseg_get_last());
tests/sys/uvm/t_uvm_physseg.c
1444
upm = uvm_physseg_get_last();
tests/sys/uvm/t_uvm_physseg.c
1462
upm = uvm_physseg_get_last();
tests/sys/uvm/t_uvm_physseg.c
1481
upm = uvm_physseg_get_last();
tests/sys/uvm/t_uvm_physseg.c
2362
ATF_TP_ADD_TC(tp, uvm_physseg_get_last);