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

  /external/compiler-rt/lib/lsan/
lsan_common_linux.cc 57 Frontier *frontier = reinterpret_cast<Frontier *>(data); local
73 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL",
76 ScanRangeForPointers(allocator_end, end, frontier, "GLOBAL",
79 ScanRangeForPointers(begin, end, frontier, "GLOBAL", kReachable);
86 void ProcessGlobalRegions(Frontier *frontier) {
92 dl_iterate_phdr(ProcessGlobalRegionsCallback, frontier);
106 Frontier *frontier member in struct:__lsan::ProcessPlatformAllocParam
    [all...]
lsan_common.cc 156 // chunks. Marks those chunks with |tag| and adds them to |frontier|.
160 // so |frontier| = 0.
162 Frontier *frontier,
193 if (frontier)
194 frontier->push_back(chunk);
199 Frontier *frontier = reinterpret_cast<Frontier *>(arg); local
200 ScanRangeForPointers(begin, end, frontier, "FAKE STACK", kReachable)
    [all...]
lsan_common.h 120 typedef InternalMmapVector<uptr> Frontier;
124 void ProcessGlobalRegions(Frontier *frontier);
125 void ProcessPlatformSpecificAllocations(Frontier *frontier);
128 Frontier *frontier,
  /external/llvm/include/llvm/Analysis/
DominanceFrontier.h 11 // dominance frontier for a function.
66 iterator addBasicBlock(BasicBlock *BB, const DomSetType &frontier) {
68 return Frontiers.insert(std::make_pair(BB, frontier)).first;
71 /// removeBlock - Remove basic block BB's frontier.
115 /// compare - Return true if the other dominance frontier base matches
116 /// this dominance frontier base. Otherwise return false.
147 /// dump - Dump the dominance frontier to dbgs().
  /external/chromium_org/chrome/test/ispy/common/
image_tools.py 188 This function evaluates a 'frontier' of valid pixels indices. Initially,
189 this frontier contains all indices in the image. However, with each pass
191 are added to the next pass's frontier. This gives the algorithm a
206 frontier = set(range(len(old_dataset)))
230 for index in frontier:
234 frontier, new_frontier = new_frontier, set()

Completed in 717 milliseconds