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 56 Frontier *frontier = reinterpret_cast<Frontier *>(data); local
72 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL",
75 ScanRangeForPointers(allocator_end, end, frontier, "GLOBAL",
78 ScanRangeForPointers(begin, end, frontier, "GLOBAL", kReachable);
85 void ProcessGlobalRegions(Frontier *frontier) {
90 dl_iterate_phdr(ProcessGlobalRegionsCallback, frontier);
104 // reachable. Marks them as reachable and adds them to the frontier
    [all...]
lsan_common.h 102 typedef InternalMmapVector<uptr> Frontier;
106 void ProcessGlobalRegions(Frontier *frontier);
107 void ProcessPlatformSpecificAllocations(Frontier *frontier);
110 Frontier *frontier,
lsan_common.cc 113 // chunks. Marks those chunks with |tag| and adds them to |frontier|.
117 // so |frontier| = 0.
119 Frontier *frontier,
140 if (frontier)
141 frontier->push_back(chunk);
147 Frontier *frontier) {
175 ScanRangeForPointers(registers_begin, registers_end, frontier,
191 ScanRangeForPointers(stack_begin, stack_end, frontier, "STACK"
    [all...]
  /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/functional/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 70 milliseconds