/src/sys/arch/amd64/amd64/ |
prekern.c | 61 int biosbasemem; member in struct:prekern_args 86 extern int biosbasemem; 104 biosbasemem = pkargs->biosbasemem; 106 biosbasemem = REALBASEMEM;
|
locore.S | 344 .globl _C_LABEL(biosbasemem) 377 .type _C_LABEL(biosbasemem), @object 379 LABEL(biosbasemem) .long 0 /* base memory reported by BIOS */ 381 LABEL(biosbasemem) .long REALBASEMEM 383 END(biosbasemem) 490 * boothowto, [bootdev], bootinfo, esym, biosextmem, biosbasemem 596 /* Load 'biosbasemem' */ 597 movl $RELOC(biosbasemem),%ebp
|
/src/sys/arch/amd64/stand/prekern/ |
prekern.c | 183 int biosbasemem; member in struct:prekern_args 200 extern int biosbasemem; 215 pkargs.biosbasemem = biosbasemem;
|
locore.S | 131 .globl _C_LABEL(biosbasemem) 159 .type _C_LABEL(biosbasemem), @object 160 LABEL(biosbasemem) .long 0 /* base memory reported by BIOS */ 161 END(biosbasemem) 220 * boothowto, [bootdev], bootinfo, esym, biosextmem, biosbasemem 306 /* Load 'biosbasemem' */ 308 movl $_C_LABEL(biosbasemem),%ebp
|
/src/sys/arch/i386/i386/ |
multiboot.c | 74 extern int biosbasemem; 660 * Sets up the 'biosbasemem' and 'biosextmem' variables if the 671 if (biosbasemem == 0) { 672 biosbasemem = mi->mi_mem_lower;
|
machdep.c | 264 int biosbasemem = 0; variable in typeref:typename:int 266 int biosbasemem = REALBASEMEM; variable in typeref:typename:int 276 /* Set if any boot-loader set biosbasemem/biosextmem. */ 363 * Configure biosbasemem and biosextmem only if they were not 366 if (*RELOC(int *, &biosbasemem) == 0) { 367 *RELOC(int *, &biosbasemem) = bl_biosbasemem;
|
/src/sys/arch/x86/x86/ |
x86_machdep.c | 773 if (extent_alloc_region(iomem_ex, 0, KBTOB(biosbasemem), EX_NOWAIT)) { 781 cluster->size = trunc_page(KBTOB(biosbasemem)); 935 if ((biosmem_implicit || (biosbasemem == 0 && biosextmem == 0)) && 1508 const_sysctl(clog, "biosbasemem", CTLTYPE_INT, biosbasemem,
|
multiboot2.c | 98 extern int biosbasemem; 496 if (biosbasemem == 0) { 497 biosbasemem = mbt->mem_lower;
|
/src/sys/arch/x86/include/ |
cpu.h | 451 extern int biosbasemem;
|