Home
last modified time | relevance | path

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

/external/compiler-rt/lib/asan/
Dasan_mapping.h180 #define kHighShadowBeg MEM_TO_SHADOW(kHighMemBeg) macro
193 #define kShadowGapEnd ((kMidMemBeg ? kMidShadowBeg : kHighShadowBeg) - 1)
199 #define kShadowGap3End (kMidMemBeg ? kHighShadowBeg - 1 : 0)
261 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()
476 ReserveShadowMemoryRange(kHighShadowBeg, kHighShadowEnd, "high shadow"); in AsanInitInternal()
479 CHECK_EQ(kShadowGapEnd, kHighShadowBeg - 1); in AsanInitInternal()
489 ReserveShadowMemoryRange(kHighShadowBeg, kHighShadowEnd, "high shadow"); in AsanInitInternal()
/external/compiler-rt/lib/asan/tests/
Dasan_noinst_test.cc219 ptr = kHighShadowBeg + 200; in TEST()