Searched refs:shadow_size_bytes (Results 1 – 9 of 9) sorted by relevance
| /openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/ |
| H A D | hwasan_dynamic_shadow.cpp | 58 static uptr FindPremappedShadowStart(uptr shadow_size_bytes) { in FindPremappedShadowStart() argument 62 const uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); in FindPremappedShadowStart() 108 uptr FindDynamicShadowStart(uptr shadow_size_bytes) { in FindDynamicShadowStart() argument 110 return FindPremappedShadowStart(shadow_size_bytes); in FindDynamicShadowStart() 111 return MapDynamicShadow(shadow_size_bytes, kShadowScale, kShadowBaseAlignment, in FindDynamicShadowStart() 130 uptr FindDynamicShadowStart(uptr shadow_size_bytes) { in FindDynamicShadowStart() argument 134 return MapDynamicShadowAndAliases(shadow_size_bytes, kAliasSize, kNumAliases, in FindDynamicShadowStart() 137 return MapDynamicShadow(shadow_size_bytes, kShadowScale, kShadowBaseAlignment, in FindDynamicShadowStart()
|
| H A D | hwasan_dynamic_shadow.h | 22 uptr FindDynamicShadowStart(uptr shadow_size_bytes);
|
| H A D | hwasan_linux.cpp | 108 static void InitializeShadowBaseAddress(uptr shadow_size_bytes) { in InitializeShadowBaseAddress() argument 110 FindDynamicShadowStart(shadow_size_bytes); in InitializeShadowBaseAddress()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/asan/ |
| H A D | asan_linux.cpp | 93 uptr FindPremappedShadowStart(uptr shadow_size_bytes) { in FindPremappedShadowStart() argument 97 uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); in FindPremappedShadowStart() 105 uptr shadow_size_bytes = MemToShadowSize(kHighMemEnd); in FindDynamicShadowStart() local 108 return FindPremappedShadowStart(shadow_size_bytes); in FindDynamicShadowStart() 111 return MapDynamicShadow(shadow_size_bytes, ASAN_SHADOW_SCALE, in FindDynamicShadowStart()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/memprof/ |
| H A D | memprof_linux.cpp | 67 uptr shadow_size_bytes = MemToShadowSize(kHighMemEnd); in FindDynamicShadowStart() local 68 return MapDynamicShadow(shadow_size_bytes, SHADOW_SCALE, in FindDynamicShadowStart()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_linux_libcdep.cpp | 988 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale, in MapDynamicShadow() argument 997 const uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); in MapDynamicShadow()
|
| H A D | sanitizer_win.cpp | 384 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale, in MapDynamicShadow() argument 392 uptr space_size = shadow_size_bytes + left_padding; in MapDynamicShadow()
|
| H A D | sanitizer_mac.cpp | 1190 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale, in MapDynamicShadow() argument 1198 uptr space_size = shadow_size_bytes + left_padding; in MapDynamicShadow()
|
| H A D | sanitizer_common.h | 139 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale,
|