Symbol: uvm_physseg_get_first
sys/arch/aarch64/aarch64/pmap.c
521
for (bank = uvm_physseg_get_first(); uvm_physseg_valid_p(bank);
sys/arch/aarch64/aarch64/pmap_machdep.c
517
pmap_limits.avail_start = ptoa(uvm_physseg_get_start(uvm_physseg_get_first()));
sys/arch/alpha/alpha/pmap.c
1301
avail_start = ptoa(uvm_physseg_get_avail_start(uvm_physseg_get_first()));
sys/arch/alpha/alpha/pmap.c
1503
for (bank = uvm_physseg_get_first();
sys/arch/alpha/alpha/pmap.c
1586
for (uvm_physseg_t bank = uvm_physseg_get_first();
sys/arch/amd64/amd64/machdep.c
909
for (upm = uvm_physseg_get_first();
sys/arch/arm/arm32/pmap.c
6657
avail_start = ptoa(uvm_physseg_get_avail_start(uvm_physseg_get_first()));
sys/arch/arm/arm32/pmap.c
8130
if (!uvm_physseg_valid_p(uvm_physseg_get_first()))
sys/arch/arm/arm32/pmap.c
8141
for (uvm_physseg_t ups = uvm_physseg_get_first();
sys/arch/ia64/ia64/machdep.c
190
for (vm_nphysseg = 0, upm = uvm_physseg_get_first();
sys/arch/ia64/ia64/pmap.c
1326
for (upm = uvm_physseg_get_first();
sys/arch/ia64/ia64/pmap.c
1377
for (upm = uvm_physseg_get_first();
sys/arch/ia64/ia64/pmap.c
1414
uvm_physseg_get_first() == uvm_physseg_get_last() /* single segment */) {
sys/arch/m68k/m68k/pmap_motorola.c
1854
for (bank = uvm_physseg_get_first();
sys/arch/m68k/m68k/pmap_motorola.c
506
for (page_cnt = 0, bank = uvm_physseg_get_first();
sys/arch/m68k/m68k/pmap_motorola.c
535
for (bank = uvm_physseg_get_first();
sys/arch/mips/mips/pmap_machdep.c
412
pmap_limits.avail_start = ptoa(uvm_physseg_get_start(uvm_physseg_get_first()));
sys/arch/powerpc/booke/booke_pmap.c
200
pmap_limits.avail_start = uvm_physseg_get_start(uvm_physseg_get_first()) << PGSHIFT;
sys/arch/powerpc/ibm4xx/pmap.c
500
for (bank = uvm_physseg_get_first(); uvm_physseg_valid_p(bank);
sys/arch/powerpc/isa/isadma_machdep.c
171
for (bank = uvm_physseg_get_first();
sys/arch/powerpc/isa/isadma_machdep.c
603
for (bank = uvm_physseg_get_first();
sys/arch/powerpc/oea/pmap.c
2954
for (bank = uvm_physseg_get_first();
sys/arch/powerpc/oea/pmap.c
2980
for (bank = uvm_physseg_get_first();
sys/arch/powerpc/oea/pmap.c
3447
for (cnt = 0, bank = uvm_physseg_get_first();
sys/arch/powerpc/oea/pmap.c
3482
for (bank = uvm_physseg_get_first();
sys/arch/powerpc/powerpc/bus_dma.c
676
for (bank = uvm_physseg_get_first();
sys/arch/riscv/riscv/pmap_machdep.c
378
pmap_limits.avail_start = ptoa(uvm_physseg_get_start(uvm_physseg_get_first()));
sys/arch/sh3/sh3/pmap.c
111
avail_start = ptoa(uvm_physseg_get_start(uvm_physseg_get_first()));
sys/arch/sh3/sh3/pmap.c
140
for (bank = uvm_physseg_get_first();
sys/arch/sh3/sh3/vm_machdep.c
387
if (atop(pa) < uvm_physseg_get_start(uvm_physseg_get_first()) || PHYS_TO_VM_PAGE(pa) != NULL) {
sys/arch/vax/vax/pmap.c
469
bank = uvm_physseg_get_first();
sys/arch/x86/x86/x86_machdep.c
1171
for (x = uvm_physseg_get_first();
sys/uvm/pmap/pmap.c
583
for (uvm_physseg_t bank = uvm_physseg_get_first();
sys/uvm/uvm_page.c
2210
for (i = uvm_physseg_get_first();
sys/uvm/uvm_page.c
377
for (bank = uvm_physseg_get_first();
sys/uvm/uvm_page.c
430
for (bank = uvm_physseg_get_first(),
sys/uvm/uvm_page.c
636
for (lcv = uvm_physseg_get_first(); uvm_physseg_valid_p(lcv); lcv = uvm_physseg_get_next(lcv))
sys/uvm/uvm_page.c
651
for (lcv = uvm_physseg_get_first(); uvm_physseg_valid_p(lcv); lcv = uvm_physseg_get_next(lcv))
sys/uvm/uvm_pglist.c
476
for (psi = uvm_physseg_get_first(); uvm_physseg_valid_p(psi); psi = uvm_physseg_get_next(psi))
sys/uvm/uvm_pglist.c
641
for (psi = uvm_physseg_get_first(); uvm_physseg_valid_p(psi); psi = uvm_physseg_get_next(psi))
sys/uvm/uvm_physseg.h
118
uvm_physseg_t uvm_physseg_get_first(void);
tests/sys/uvm/t_uvm_physseg.c
1349
ATF_TC(uvm_physseg_get_first);
tests/sys/uvm/t_uvm_physseg.c
1350
ATF_TC_HEAD(uvm_physseg_get_first, tc)
tests/sys/uvm/t_uvm_physseg.c
1355
ATF_TC_BODY(uvm_physseg_get_first, tc)
tests/sys/uvm/t_uvm_physseg.c
1364
ATF_CHECK_EQ(upm, uvm_physseg_get_first());
tests/sys/uvm/t_uvm_physseg.c
1374
upm = uvm_physseg_get_first();
tests/sys/uvm/t_uvm_physseg.c
1392
upm = uvm_physseg_get_first();
tests/sys/uvm/t_uvm_physseg.c
1411
upm = uvm_physseg_get_first();
tests/sys/uvm/t_uvm_physseg.c
2126
upm = uvm_physseg_get_first();
tests/sys/uvm/t_uvm_physseg.c
2191
upm = uvm_physseg_get_first();
tests/sys/uvm/t_uvm_physseg.c
2361
ATF_TP_ADD_TC(tp, uvm_physseg_get_first);
tests/sys/uvm/t_uvm_physseg.c
439
for (bank = uvm_physseg_get_first(),
tests/sys/uvm/t_uvm_physseg_load.c
260
for (bank = uvm_physseg_get_first(),