reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
117 region_address = g.beg;
projects/compiler-rt/lib/asan/asan_descriptions.cpp282 if (addr < g.beg) { 284 g.beg - addr); 285 } else if (addr + access_size > g.beg + g.size) { 286 if (addr < g.beg + g.size) addr = g.beg + g.size; 286 if (addr < g.beg + g.size) addr = g.beg + g.size; 288 addr - (g.beg + g.size)); 291 str.append("%p is located %zd bytes inside", (void *)addr, addr - g.beg); 296 str.append("' (0x%zx) of size %zu\n", g.beg, g.size); 345 if (a.beg == b.beg && 345 if (a.beg == b.beg && 346 a.beg <= addr && 347 b.beg <= other.addr && 348 (addr + access_size) < (a.beg + a.size) && 349 (other.addr + other.access_size) < (b.beg + b.size))projects/compiler-rt/lib/asan/asan_errors.cpp
344 global1.beg);
projects/compiler-rt/lib/asan/asan_globals.cpp60 FastPoisonShadow(g->beg, g->size_with_redzone, value); 65 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size, 69 g.beg + RoundDownTo(g.size, SHADOW_GRANULARITY), 79 if (addr <= g.beg - kMinimalDistanceFromAnotherGlobal) return false; 80 if (addr >= g.beg + g.size_with_redzone) return false; 88 prefix, &g, (void *)g.beg, g.size, g.size_with_redzone, g.name, 161 if (__asan_region_is_poisoned(g->beg, g->size_with_redzone)) { 165 if (g->beg == l->g->beg && 165 if (g->beg == l->g->beg && 202 CHECK(AddrIsInMem(g->beg)); 203 if (!AddrIsAlignedByGranularity(g->beg)) { 211 CHECK(AddrIsAlignedByGranularity(g->beg)); 243 CHECK(AddrIsInMem(g->beg)); 244 CHECK(AddrIsAlignedByGranularity(g->beg)); 290 for (uptr p = g.beg; p < g.beg + g.size - 1; p++) { 290 for (uptr p = g.beg; p < g.beg + g.size - 1; p++) { 294 if (*(char *)(g.beg + g.size - 1) != '\0') return; 296 (char *)g.beg); 375 if (SANITIZER_WINDOWS && globals[i].beg == 0) { 403 if (SANITIZER_WINDOWS && globals[i].beg == 0) {