Home | History | Annotate | Download | only in efiboot

Lines Matching defs:NoEntries

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;
211 mdtop = efi_memory_get_map(&NoEntries, &MapKey, &DescriptorSize,
213 efi_memory_compact_map(mdtop, &NoEntries, DescriptorSize);
215 memmap = alloc(sizeof(*memmap) * NoEntries);
217 for (i = 0, md = mdtop; i < NoEntries; i++, md = next) {
226 *num = NoEntries;
237 UINTN i, NoEntries, MapKey, DescriptorSize, MappingSize;
241 mdtop = efi_memory_get_map(&NoEntries, &MapKey, &DescriptorSize,
244 for (i = 0, md = mdtop; i < NoEntries; i++, md = next) {
272 UINTN i, NoEntries, MapKey, DescriptorSize, MappingSize;
280 mdtop = efi_memory_get_map(&NoEntries, &MapKey, &DescriptorSize,
283 for (i = 0, md = mdtop; i < NoEntries; i++, md = next) {
334 UINTN i, n, NoEntries, MapKey, DescriptorSize, MappingSize;
345 mdtop = efi_memory_get_map(&NoEntries, &MapKey, &DescriptorSize,
348 for (i = 0, n = 0, md = mdtop; i < NoEntries; i++, md = next) {
374 UINTN i, NoEntries, MapKey, DescriptorSize;
386 mdtop = efi_memory_get_map(&NoEntries, &MapKey, &DescriptorSize,
389 efi_memory_compact_map(mdtop, &NoEntries, DescriptorSize);
395 for (i = 0, md = mdtop; i < NoEntries; i++, md = next) {