Searched refs:dosmem (Results 1 – 3 of 3) sorted by relevance
49 static int mboot_scan_memory(struct AddrRangeDesc **ardp, uint32_t * dosmem) in mboot_scan_memory() argument59 *dosmem = oreg.eax.w[0] << 10; in mboot_scan_memory()60 if (*dosmem < 32 * 1024 || *dosmem > 640 * 1024) { in mboot_scan_memory()64 *dosmem = ebda_seg << 4; in mboot_scan_memory()66 *dosmem = 640 * 1024; /* Hope for the best... */ in mboot_scan_memory()123 ard[0].Length = *dosmem << 10; in mboot_scan_memory()
529 addr_t dosmem; in bios_scan_memory() local534 dosmem = oreg.eax.w[0] << 10; in bios_scan_memory()535 if (dosmem < 32 * 1024 || dosmem > 640 * 1024) { in bios_scan_memory()539 dosmem = ebda_seg << 4; in bios_scan_memory()541 dosmem = 640 * 1024; /* Hope for the best... */ in bios_scan_memory()543 rv = callback(data, bios_data, dosmem - bios_data, SMT_FREE); in bios_scan_memory()
147 addr_t dosmem = *bios_fbm << 10; /* Technically a low bound */ in do_boot() local165 if (endimage > dosmem) in do_boot()