HomeSort by: relevance | last modified time | path
    Searched defs:segend (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/arch/arm/arm32/
arm32_boot.c 275 paddr_t segend = end; local in function:initarm_common
284 if (start >= bp_end || segend < bp_start)
291 if (segend > bp_end) {
292 segend = bp_end;
298 ptoa(segend), vm_freelist);
300 uvm_page_physload(start, segend, start, segend,
303 start = segend;
304 segend = end;
  /src/sys/arch/aarch64/aarch64/
aarch64_machdep.c 395 paddr_t segend = end; local in function:initarm_common
404 if (start >= bp_end || segend < bp_start)
411 if (segend > bp_end) {
412 segend = bp_end;
418 ptoa(segend), vm_freelist);
420 uvm_page_physload(start, segend, start, segend,
423 memsize_total += ptoa(segend - start);
424 start = segend;
425 segend = end
    [all...]
  /src/sys/arch/mips/mips/
mips_machdep.c 2228 paddr_t segend = segfinish; local in function:mips_page_physload
2235 || segend <= flp[i].fl_start)
2258 if (segend > flp[i].fl_end)
2259 segend = flp[i].fl_end;
2270 if (segend > HALFGIG)
2271 segend = HALFGIG;
2277 if (segend > FOURGIG)
2278 segend = FOURGIG;
2288 if (segstart < kernend && segend > kernstart) {
2294 segend = kernstart
    [all...]

Completed in 20 milliseconds