HomeSort by relevance Sort by last modified time
    Searched refs:size_with_redzone (Results 1 - 3 of 3) sorted by null

  /external/v8/src/zone/
zone.cc 78 const size_t size_with_redzone = size + kASanRedzoneBytes; local
82 if (limit < position || size_with_redzone > limit - position) {
83 result = NewExpand(size_with_redzone);
85 position_ += size_with_redzone;
  /external/compiler-rt/lib/asan/
asan_globals.cc 60 FastPoisonShadow(g->beg, g->size_with_redzone, value);
65 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size,
80 if (addr >= g.beg + g.size_with_redzone) return false;
86 prefix, &g, (void *)g.beg, g.size, g.size_with_redzone, g.name,
167 if (__asan_region_is_poisoned(g->beg, g->size_with_redzone)) {
221 CHECK(AddrIsAlignedByGranularity(g->size_with_redzone));
253 CHECK(AddrIsAlignedByGranularity(g->size_with_redzone));
asan_interface_internal.h 50 uptr size_with_redzone; // The size with the redzone. member in struct:__asan_global

Completed in 157 milliseconds