HomeSort by: relevance | last modified time | path
    Searched refs:RootRegion (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common.h 123 struct RootRegion {
128 InternalMmapVector<RootRegion> const *GetRootRegions();
129 void ScanRootRegion(Frontier *frontier, RootRegion const &region,
lsan_common.cc 101 static InternalMmapVector<RootRegion> *root_regions;
103 InternalMmapVector<RootRegion> const *GetRootRegions() { return root_regions; }
107 ALIGNED(64) static char placeholder[sizeof(InternalMmapVector<RootRegion>)];
108 root_regions = new (placeholder) InternalMmapVector<RootRegion>(); // NOLINT
312 void ScanRootRegion(Frontier *frontier, const RootRegion &root_region,
327 const RootRegion &root_region) {
825 RootRegion region = {reinterpret_cast<uptr>(begin), size};
838 RootRegion region = (*root_regions)[i];
lsan_common_mac.cc 153 InternalMmapVector<RootRegion> const *root_regions = GetRootRegions();
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_common.h 128 struct RootRegion {
143 InternalMmapVectorNoCtor<RootRegion> const *GetRootRegions();
144 void ScanRootRegion(Frontier *frontier, RootRegion const &region,
lsan_common_mac.cpp 152 InternalMmapVectorNoCtor<RootRegion> const *root_regions = GetRootRegions();
lsan_common.cpp 134 static InternalMmapVectorNoCtor<RootRegion> root_regions;
136 InternalMmapVectorNoCtor<RootRegion> const *GetRootRegions() {
396 void ScanRootRegion(Frontier *frontier, const RootRegion &root_region,
412 const RootRegion &root_region) {
962 RootRegion region = {reinterpret_cast<uptr>(begin), size};
974 RootRegion region = root_regions[i];

Completed in 36 milliseconds