Searched defs:appToShadow (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/esan/
H A Desan_shadow.h158 uptr appToShadow(uptr App) { function in namespace:__esan
176 *Start = appToShadow(AppRegions[AppIdx].Start);
178 *End = appToShadow(AppRegions[AppIdx].End - 1) + 1;
183 *Start = Min(*Start, appToShadow(AppRegions[AppIdx].Start));
184 *End = Max(*End, appToShadow(AppRegions[AppIdx].End - 1) + 1);
194 if (Mem >= appToShadow(AppRegions[i].Start) &&
195 Mem < appToShadow(AppRegions[i].End - 1) + 1)
/external/llvm/lib/Transforms/Instrumentation/
H A DEfficiencySanitizer.cpp195 Value *appToShadow(Value *Shadow, IRBuilder<> &IRB);
560 Value *EfficiencySanitizer::appToShadow(Value *Shadow, IRBuilder<> &IRB) { function in class:EfficiencySanitizer
875 // char *ShadowAddr = appToShadow(AppAddr);
880 Value *ShadowPtr = appToShadow(AddrPtr, IRB);

Completed in 79 milliseconds