Searched refs:shadow_size_bytes (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_dynamic_shadow.h22 uptr FindDynamicShadowStart(uptr shadow_size_bytes);
H A Dhwasan_dynamic_shadow.cpp42 // 2**kShadowBaseAlingment on the left and shadow_size_bytes bytes on the right
44 static uptr MapDynamicShadow(uptr shadow_size_bytes) { argument
52 RoundUpTo(shadow_size_bytes, granularity);
96 static uptr FindPremappedShadowStart(uptr shadow_size_bytes) { argument
100 const uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity);
146 uptr FindDynamicShadowStart(uptr shadow_size_bytes) { argument
148 return FindPremappedShadowStart(shadow_size_bytes);
149 return MapDynamicShadow(shadow_size_bytes);
158 uptr FindDynamicShadowStart(uptr shadow_size_bytes) {
159 return MapDynamicShadow(shadow_size_bytes);
[all...]
H A Dhwasan_linux.cpp144 static void InitializeShadowBaseAddress(uptr shadow_size_bytes) { argument
146 FindDynamicShadowStart(shadow_size_bytes);

Completed in 151 milliseconds