Home
last modified time | relevance | path

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

/external/compiler-rt/lib/asan/
Dasan_globals.cc60 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()
Dasan_interface_internal.h50 uptr size_with_redzone; // The size with the redzone. member
/external/v8/src/zone/
Dzone.cc74 const size_t size_with_redzone = size + kASanRedzoneBytes; in New() local
78 if (limit < position || size_with_redzone > limit - position) { in New()
79 result = NewExpand(size_with_redzone); in New()
81 position_ += size_with_redzone; in New()