Home
last modified time | relevance | path

Searched refs:dosmem (Results 1 – 3 of 3) sorted by relevance

/external/syslinux/com32/mboot/
Dmem.c49 static int mboot_scan_memory(struct AddrRangeDesc **ardp, uint32_t * dosmem) in mboot_scan_memory() argument
59 *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()
/external/syslinux/core/
Dbios.c529 addr_t dosmem; in bios_scan_memory() local
534 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()
/external/syslinux/com32/modules/
Dpxechn.c147 addr_t dosmem = *bios_fbm << 10; /* Technically a low bound */ in do_boot() local
165 if (endimage > dosmem) in do_boot()