HomeSort by: relevance | last modified time | path
    Searched defs:NoEntries (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/i386/stand/efiboot/
efiboot.c 113 UINTN NoEntries, MapKey, DescriptorSize;
124 NoEntries = 0;
125 desc = efi_memory_get_map(&NoEntries, &MapKey, &DescriptorSize,
130 desc = efi_memory_get_map(&NoEntries, &MapKey, &DescriptorSize,
138 efi_memory_compact_map(desc, &NoEntries, DescriptorSize);
140 + NoEntries * DescriptorSize;
142 btinfo_efimemmap->num = NoEntries;
145 memcpy(btinfo_efimemmap->memmap, desc, NoEntries * DescriptorSize);
efimemory.c 91 efi_memory_get_map(UINTN *NoEntries, UINTN *MapKey, UINTN *DescriptorSize,
97 *NoEntries = 0;
98 desc = LibMemoryMap(NoEntries, MapKey, DescriptorSize,
110 for (i = 0, md = desc; i < *NoEntries - 1; i++, md = next) {
112 for (j = i + 1; j < *NoEntries; j++) {
127 efi_memory_compact_map(EFI_MEMORY_DESCRIPTOR *desc, UINTN *NoEntries,
135 for (i = 0, md = target = desc; i < *NoEntries; i++, md = next) {
175 for (j = i + 1; j < *NoEntries; j++) {
183 (*NoEntries)--;
201 UINTN i, NoEntries, MapKey, DescriptorSize
    [all...]

Completed in 12 milliseconds