Lines Matching refs:mMapDepth

36 UINTN         mMapDepth = 0;  variable
244 mMapStack[mMapDepth].Signature = MEMORY_MAP_SIGNATURE; in CoreAddRange()
245 mMapStack[mMapDepth].FromPages = FALSE; in CoreAddRange()
246 mMapStack[mMapDepth].Type = Type; in CoreAddRange()
247 mMapStack[mMapDepth].Start = Start; in CoreAddRange()
248 mMapStack[mMapDepth].End = End; in CoreAddRange()
249 mMapStack[mMapDepth].VirtualStart = 0; in CoreAddRange()
250 mMapStack[mMapDepth].Attribute = Attribute; in CoreAddRange()
251 InsertTailList (&gMemoryMap, &mMapStack[mMapDepth].Link); in CoreAddRange()
253 mMapDepth += 1; in CoreAddRange()
254 ASSERT (mMapDepth < MAX_MAP_DEPTH); in CoreAddRange()
341 while (mMapDepth != 0) { in CoreFreeMemoryMapStack()
352 mMapDepth -= 1; in CoreFreeMemoryMapStack()
354 if (mMapStack[mMapDepth].Link.ForwardLink != NULL) { in CoreFreeMemoryMapStack()
359 RemoveEntryList (&mMapStack[mMapDepth].Link); in CoreFreeMemoryMapStack()
360 mMapStack[mMapDepth].Link.ForwardLink = NULL; in CoreFreeMemoryMapStack()
362 CopyMem (Entry , &mMapStack[mMapDepth], sizeof (MEMORY_MAP)); in CoreFreeMemoryMapStack()
872 mMapStack[mMapDepth].Signature = MEMORY_MAP_SIGNATURE; in CoreConvertPagesEx()
873 mMapStack[mMapDepth].FromPages = FALSE; in CoreConvertPagesEx()
874 mMapStack[mMapDepth].Type = Entry->Type; in CoreConvertPagesEx()
875 mMapStack[mMapDepth].Start = RangeEnd+1; in CoreConvertPagesEx()
876 mMapStack[mMapDepth].End = Entry->End; in CoreConvertPagesEx()
881 mMapStack[mMapDepth].Attribute = Entry->Attribute; in CoreConvertPagesEx()
886 Entry = &mMapStack[mMapDepth]; in CoreConvertPagesEx()
889 mMapDepth += 1; in CoreConvertPagesEx()
890 ASSERT (mMapDepth < MAX_MAP_DEPTH); in CoreConvertPagesEx()