Home
last modified time | relevance | path

Searched refs:e820buf (Results 1 – 4 of 4) sorted by relevance

/external/syslinux/gpxe/src/arch/i386/firmware/pcbios/
Dmemmap.c62 static struct e820_entry __bss16 ( e820buf );
63 #define e820buf __use_data16 ( e820buf ) macro
169 memset ( &e820buf, 0, sizeof ( e820buf ) ); in meme820()
186 "D" ( __from_data16 ( &e820buf ) ), in meme820()
187 "c" ( sizeof ( e820buf ) ), in meme820()
208 ( e820buf.type != E820_TYPE_RAM ) ) { in meme820()
214 e820buf.start, ( e820buf.start + e820buf.len ), in meme820()
215 ( int ) e820buf.type ); in meme820()
216 if ( size > offsetof ( typeof ( e820buf ), attrs ) ) { in meme820()
217 DBG ( " (%s", ( ( e820buf.attrs & E820_ATTR_ENABLED ) in meme820()
[all …]
/external/syslinux/com32/mboot/
Dmem.c52 struct e820_entry *e820buf; in mboot_scan_memory() local
69 e820buf = lmalloc(sizeof(*e820buf)); in mboot_scan_memory()
70 if (!e820buf) in mboot_scan_memory()
86 ireg.ecx.l = sizeof(*e820buf); in mboot_scan_memory()
87 ireg.es = SEG(e820buf); in mboot_scan_memory()
88 ireg.edi.w[0] = OFFS(e820buf); in mboot_scan_memory()
89 memset(e820buf, 0, sizeof *e820buf); in mboot_scan_memory()
108 ard[ard_count].BaseAddr = e820buf->start; in mboot_scan_memory()
109 ard[ard_count].Length = e820buf->len; in mboot_scan_memory()
110 ard[ard_count].Type = e820buf->type; in mboot_scan_memory()
[all …]
/external/syslinux/core/
Dbios.c525 struct e820_entry *e820buf; in bios_scan_memory() local
548 e820buf = lzalloc(sizeof *e820buf); in bios_scan_memory()
549 if (!e820buf) in bios_scan_memory()
556 ireg.ecx.l = sizeof(*e820buf); in bios_scan_memory()
557 ireg.es = SEG(e820buf); in bios_scan_memory()
558 ireg.edi.w[0] = OFFS(e820buf); in bios_scan_memory()
567 start = e820buf->start; in bios_scan_memory()
568 len = e820buf->len; in bios_scan_memory()
589 type = e820buf->type == 1 ? SMT_FREE : SMT_RESERVED; in bios_scan_memory()
600 lfree(e820buf); in bios_scan_memory()
/external/syslinux/efi/
Dmain.c950 struct e820_entry *e820buf, *e; in exit_boot() local
979 e = e820buf = bp->e820_map; in exit_boot()
983 if (e > e820buf) in exit_boot()
1033 bp->e820_entries = e - e820buf; in exit_boot()