Lines Matching refs:AppRegions
98 static const struct ApplicationRegion AppRegions[] = { variable
108 static const u32 NumAppRegions = sizeof(AppRegions)/sizeof(AppRegions[0]);
143 *Start = AppRegions[i].Start; in getAppRegion()
144 *End = AppRegions[i].End; in getAppRegion()
151 if (Mem >= AppRegions[i].Start && Mem < AppRegions[i].End) in isAppMem()
168 if (!AppRegions[AppIdx].ShadowMergedWithPrev) { in getShadowRegion()
176 *Start = appToShadow(AppRegions[AppIdx].Start); in getShadowRegion()
178 *End = appToShadow(AppRegions[AppIdx].End - 1) + 1; in getShadowRegion()
181 if (!AppRegions[AppIdx].ShadowMergedWithPrev) in getShadowRegion()
183 *Start = Min(*Start, appToShadow(AppRegions[AppIdx].Start)); in getShadowRegion()
184 *End = Max(*End, appToShadow(AppRegions[AppIdx].End - 1) + 1); in getShadowRegion()
194 if (Mem >= appToShadow(AppRegions[i].Start) && in isShadowMem()
195 Mem < appToShadow(AppRegions[i].End - 1) + 1) in isShadowMem()