Home
last modified time | relevance | path

Searched refs:kHighShadowBeg (Results 1 – 3 of 3) sorted by relevance

/external/compiler-rt/lib/asan/
Dasan_mapping.h204 #define kHighShadowBeg MEM_TO_SHADOW(kHighMemBeg) macro
217 #define kShadowGapEnd ((kMidMemBeg ? kMidShadowBeg : kHighShadowBeg) - 1)
223 #define kShadowGap3End (kMidMemBeg ? kHighShadowBeg - 1 : 0)
285 return a >= kHighShadowBeg && a <= kHighMemEnd; in AddrIsInHighShadow()
Dasan_rtl.cc358 (void*)kHighShadowBeg, (void*)kHighShadowEnd); in PrintAddressSpaceLayout()
380 (void*)MEM_TO_SHADOW(kHighShadowBeg), in PrintAddressSpaceLayout()
401 kHighShadowBeg > kMidMemEnd); in PrintAddressSpaceLayout()
485 ReserveShadowMemoryRange(kHighShadowBeg, kHighShadowEnd, "high shadow"); in AsanInitInternal()
488 CHECK_EQ(kShadowGapEnd, kHighShadowBeg - 1); in AsanInitInternal()
498 ReserveShadowMemoryRange(kHighShadowBeg, kHighShadowEnd, "high shadow"); in AsanInitInternal()
/external/compiler-rt/lib/asan/tests/
Dasan_noinst_test.cc218 ptr = kHighShadowBeg + 200; in TEST()