Home
last modified time | relevance | path

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

/external/compiler-rt/lib/asan/
Dasan_mapping.h157 #define kHighShadowBeg MEM_TO_SHADOW(kHighMemBeg) macro
169 #define kShadowGapEnd ((kMidMemBeg ? kMidShadowBeg : kHighShadowBeg) - 1)
175 #define kShadowGap3End (kMidMemBeg ? kHighShadowBeg - 1 : 0)
237 return a >= kHighShadowBeg && a <= kHighMemEnd; in AddrIsInHighShadow()
Dasan_rtl.cc314 (void*)kHighShadowBeg, (void*)kHighShadowEnd); in PrintAddressSpaceLayout()
336 (void*)MEM_TO_SHADOW(kHighShadowBeg), in PrintAddressSpaceLayout()
357 kHighShadowBeg > kMidMemEnd); in PrintAddressSpaceLayout()
427 ReserveShadowMemoryRange(kHighShadowBeg, kHighShadowEnd); in AsanInitInternal()
430 CHECK_EQ(kShadowGapEnd, kHighShadowBeg - 1); in AsanInitInternal()
440 ReserveShadowMemoryRange(kHighShadowBeg, kHighShadowEnd); in AsanInitInternal()
/external/compiler-rt/lib/asan/tests/
Dasan_noinst_test.cc219 ptr = kHighShadowBeg + 200; in TEST()