HomeSort by relevance Sort by last modified time
    Searched refs:AppEnd (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/esan/
esan_linux.cpp 43 uptr AppStart, AppEnd;
44 for (int i = 0; getAppRegion(i, &AppStart, &AppEnd); ++i) {
45 if (Start >= AppStart && Start + Size - 1 <= AppEnd) {
esan.cpp 97 uptr AppStart, AppEnd;
99 for (int i = 0; getAppRegion(i, &AppStart, &AppEnd); ++i) {
100 VPrintf(3, "App #%d: [%zx-%zx) (%zuGB)\n", i, AppStart, AppEnd,
101 (AppEnd - AppStart) >> 30);
118 for (int i = 0; getAppRegion(i, &AppStart, &AppEnd); ++i) {
121 DCHECK(isAppMem(AppEnd - 1));
122 DCHECK(!isAppMem(AppEnd));
124 DCHECK(!isShadowMem(AppEnd - 1));
126 DCHECK(isShadowMem(appToShadow(AppEnd - 1)));
129 DCHECK(!isShadowMem(appToShadow(appToShadow(AppEnd - 1))))
    [all...]

Completed in 142 milliseconds