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

  /external/compiler-rt/lib/asan/
asan_globals.cc 58 FastPoisonShadow(g->beg, g->size_with_redzone, value);
63 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size,
76 prefix, &g, (void*)g.beg, g.size, g.size_with_redzone, g.name,
113 CHECK(AddrIsAlignedByGranularity(g->size_with_redzone));
117 if (__asan_region_is_poisoned(g->beg, g->size_with_redzone)) {
149 CHECK(AddrIsAlignedByGranularity(g->size_with_redzone));
asan_interface_internal.h 37 uptr size_with_redzone; // The size with the redzone. member in struct:__asan_global
asan_report.cc 239 if (addr >= g.beg + g.size_with_redzone) return false;
    [all...]
  /external/chromium_org/v8/src/
zone.cc 80 int size_with_redzone = local
87 if (size_with_redzone > limit_ - position_) {
88 result = NewExpand(size_with_redzone);
90 position_ += size_with_redzone;

Completed in 653 milliseconds