Searched refs:size_with_redzone (Results 1 – 3 of 3) sorted by relevance
/external/compiler-rt/lib/asan/ |
D | asan_globals.cc | 60 FastPoisonShadow(g->beg, g->size_with_redzone, value); in PoisonShadowForGlobal() 65 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size, in PoisonRedZones() 80 if (addr >= g.beg + g.size_with_redzone) return false; in IsAddressNearGlobal() 86 prefix, &g, (void *)g.beg, g.size, g.size_with_redzone, g.name, in ReportGlobal() 167 if (__asan_region_is_poisoned(g->beg, g->size_with_redzone)) { in CheckODRViolationViaPoisoning() 221 CHECK(AddrIsAlignedByGranularity(g->size_with_redzone)); in RegisterGlobal() 253 CHECK(AddrIsAlignedByGranularity(g->size_with_redzone)); in UnregisterGlobal()
|
D | asan_interface_internal.h | 50 uptr size_with_redzone; // The size with the redzone. member
|
/external/v8/src/zone/ |
D | zone.cc | 61 const size_t size_with_redzone = size + kASanRedzoneBytes; in New() local 63 if (size_with_redzone > limit_ - position_) { in New() 64 result = NewExpand(size_with_redzone); in New() 66 position_ += size_with_redzone; in New()
|