HomeSort by relevance Sort by last modified time
    Searched defs:memmap (Results 1 - 11 of 11) sorted by null

  /external/syslinux/gpxe/src/image/
segment.c 30 #include <gpxe/memmap.h>
43 struct memory_map memmap; local
61 get_memmap ( &memmap );
64 for ( i = 0 ; i < memmap.count ; i++ ) {
65 if ( ( start >= memmap.regions[i].start ) &&
66 ( end <= memmap.regions[i].end ) ) {
  /external/syslinux/gpxe/src/arch/i386/core/
relocate.c 3 #include <gpxe/memmap.h>
45 struct memory_map memmap; local
51 get_memmap ( &memmap );
69 for ( i = 0 ; i < memmap.count ; i++ ) {
70 struct memory_region *region = &memmap.regions[i];
  /external/syslinux/gpxe/src/arch/i386/image/
com32.c 41 #include <gpxe/memmap.h>
52 struct memory_map memmap; local
63 get_memmap ( &memmap );
66 for ( i = 0, avail_mem_top = 0 ; i < memmap.count ; i++ ) {
67 if ( (memmap.regions[i].start <= COM32_START_PHYS) &&
68 (memmap.regions[i].end > COM32_START_PHYS + image->len) ) {
69 avail_mem_top = memmap.regions[i].end;
multiboot.c 36 #include <gpxe/memmap.h>
112 struct memory_map memmap; local
116 get_memmap ( &memmap );
120 for ( i = 0 ; i < memmap.count ; i++ ) {
122 DBGC ( image, "MULTIBOOT %p limit of %d memmap "
128 mbmemmap[i].base_addr = memmap.regions[i].start;
129 mbmemmap[i].length = ( memmap.regions[i].end -
130 memmap.regions[i].start );
133 if ( memmap.regions[i].start == 0 )
134 mbinfo->mem_lower = ( memmap.regions[i].end / 1024 )
    [all...]
  /bootable/recovery/tests/component/
verifier_test.cpp 43 if (!memmap.MapFile(package)) {
53 MemMapping memmap; member in class:VerifierTest
181 ASSERT_EQ(verify_file(memmap.addr, memmap.length, certs, nullptr), VERIFY_SUCCESS);
185 ASSERT_EQ(verify_file(memmap.addr, memmap.length, certs, nullptr), VERIFY_FAILURE);
  /external/syslinux/gpxe/src/arch/i386/firmware/pcbios/
hidemem.c 26 #include <gpxe/memmap.h>
135 struct memory_map memmap; local
142 get_memmap ( &memmap );
148 get_memmap ( &memmap );
182 get_memmap ( &memmap );
  /external/syslinux/gpxe/src/arch/i386/interface/pcbios/
memtop_umalloc.c 32 #include <gpxe/memmap.h>
61 struct memory_map memmap; local
67 get_memmap ( &memmap );
68 for ( i = 0 ; i < memmap.count ; i++ ) {
69 struct memory_region *region = &memmap.regions[i];
int13.c 28 #include <gpxe/memmap.h>
666 struct memory_map memmap; local
700 /* Dump out memory map prior to boot, if memmap debugging is
705 get_memmap ( &memmap );
  /external/syslinux/com32/lib/syslinux/
movebits.c 147 * the memmap chunk containing to the first byte of the region.
385 struct syslinux_memmap *memmap)
423 for (mm = memmap; mm->type != SMT_END; mm = mm->next)
647 struct syslinux_memmap *memmap; local
652 memmap = syslinux_init_memmap();
659 syslinux_add_memmap(&memmap, d, l, SMT_ZERO);
666 syslinux_add_memmap(&memmap, s, l, SMT_FREE);
677 syslinux_dump_memmap(memmap);
679 if (syslinux_compute_movelist(&moves, frags, memmap)) {
  /external/syslinux/gpxe/src/drivers/net/
b44.c 46 #include <gpxe/memmap.h>
88 struct memory_map memmap; local
90 get_memmap(&memmap);
92 highest = &memmap.regions[memmap.count - 1];
  /external/syslinux/efi/
main.c 390 uint32_t memmap; member in struct:efi_info
452 get_mem_desc(unsigned long memmap, UINTN desc_sz, int i)
454 return (EFI_MEMORY_DESCRIPTOR *)(memmap + (i * desc_sz));
962 bp->efi.memmap = (uint32_t)(unsigned long)map;
974 * Even though 'memmap' contains the memory map we provided
986 map = get_mem_desc(bp->efi.memmap, desc_sz, i);
    [all...]

Completed in 2793 milliseconds