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

References

projects/compiler-rt/lib/msan/msan.h
  246 const uptr kMemoryLayoutSize = sizeof(kMemoryLayout) / sizeof(kMemoryLayout[0]);
  246 const uptr kMemoryLayoutSize = sizeof(kMemoryLayout) / sizeof(kMemoryLayout[0]);
  260     if (kMemoryLayout[i].type == mapping_type &&
  261         addr >= kMemoryLayout[i].start && addr < kMemoryLayout[i].end)
  261         addr >= kMemoryLayout[i].start && addr < kMemoryLayout[i].end)
projects/compiler-rt/lib/msan/msan_linux.cpp
   80     uptr start = kMemoryLayout[i].start;
   81     uptr end = kMemoryLayout[i].end;
   82     MappingDesc::Type type = kMemoryLayout[i].type;
  112     VPrintf(1, "%s: %zx - %zx\n", kMemoryLayout[i].name, kMemoryLayout[i].start,
  112     VPrintf(1, "%s: %zx - %zx\n", kMemoryLayout[i].name, kMemoryLayout[i].start,
  113             kMemoryLayout[i].end - 1);
  126     uptr start = kMemoryLayout[i].start;
  127     uptr end = kMemoryLayout[i].end;
  129     MappingDesc::Type type = kMemoryLayout[i].type;
  145       if (!MmapFixedNoReserve(start, size, kMemoryLayout[i].name))
  153       if (!ProtectMemoryRange(start, size, kMemoryLayout[i].name))