reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/asan/asan_descriptions.cpp
  281   str.append("%s", d.Location());
  283     str.append("%p is located %zd bytes to the left", (void *)addr,
  287     str.append("%p is located %zd bytes to the right", (void *)addr,
  291     str.append("%p is located %zd bytes inside", (void *)addr, addr - g.beg);
  293   str.append(" of global variable '%s' defined in '",
  295   PrintGlobalLocation(&str, g);
  296   str.append("' (0x%zx) of size %zu\n", g.beg, g.size);
  297   str.append("%s", d.Default());
  298   PrintGlobalNameIfASCII(&str, g);
  299   Printf("%s", str.data());