Home | History | Annotate | Download | only in esan

Lines Matching refs:End

72 // Do not pass in the open-ended end value to the formula as it will fail.
94 uptr End;
140 static inline bool getAppRegion(u32 i, uptr *Start, uptr *End) {
144 *End = AppRegions[i].End;
151 if (Mem >= AppRegions[i].Start && Mem < AppRegions[i].End)
162 static inline bool getShadowRegion(u32 i, uptr *Start, uptr *End) {
177 // The formula fails for the end itself.
178 *End = appToShadow(AppRegions[AppIdx].End - 1) + 1;
184 *End = Max(*End, appToShadow(AppRegions[AppIdx].End - 1) + 1);
195 Mem < appToShadow(AppRegions[i].End - 1) + 1)