Lines Matching defs:map
59 struct efi_boot_memmap *map;
63 status = efi_get_memory_map(&map, false);
72 /* count the suitable slots in each memory map entry */
73 for (map_offset = 0; map_offset < map->map_size; map_offset += map->desc_size) {
74 efi_memory_desc_t *md = (void *)map->map + map_offset;
88 * when iterating over the memory map the first time around.
90 * So iterate over the memory map again, subtracting the number of
96 for (map_offset = 0; map_offset < map->map_size; map_offset += map->desc_size) {
97 efi_memory_desc_t *md = (void *)map->map + map_offset;
116 efi_bs_call(free_pool, map);