HomeSort by relevance Sort by last modified time
    Searched refs:frontier (Results 1 - 6 of 6) 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) {
88 dl_iterate_phdr(ProcessGlobalRegionsCallback, frontier);
101 Frontier *frontier member in struct:__lsan::ProcessPlatformAllocParam
    [all...]
lsan_common.cc 128 // chunks. Marks those chunks with |tag| and adds them to |frontier|.
132 // so |frontier| = 0.
134 Frontier *frontier,
165 if (frontier)
166 frontier->push_back(chunk);
171 Frontier *frontier = reinterpret_cast<Frontier *>(arg); local
172 ScanRangeForPointers(begin, end, frontier, "FAKE STACK", kReachable)
    [all...]
lsan_common.h 97 typedef InternalMmapVector<uptr> Frontier;
101 void ProcessGlobalRegions(Frontier *frontier);
102 void ProcessPlatformSpecificAllocations(Frontier *frontier);
107 Frontier *frontier,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/
mst.py 186 frontier = []
189 heappush(frontier, (G[u][v].get(weight, 1), u, v))
191 while frontier:
192 W, u, v = heappop(frontier)
199 heappush(frontier, (G[v][w].get(weight, 1), v, w))
  /external/llvm/include/llvm/Analysis/
DominanceFrontier.h 11 // dominance frontier for a function.
80 iterator addBasicBlock(BlockT *BB, const DomSetType &frontier) {
82 return Frontiers.insert(std::make_pair(BB, frontier)).first;
85 /// removeBlock - Remove basic block BB's frontier.
96 /// compare - Return true if the other dominance frontier base matches
97 /// this dominance frontier base. Otherwise return false.
104 /// dump - Dump the dominance frontier to dbgs().
172 iterator addBasicBlock(BasicBlock *BB, const DomSetType &frontier) {
173 return Base.addBasicBlock(BB, frontier);
  /external/llvm/include/llvm/CodeGen/
MachineDominanceFrontier.h 76 iterator addBasicBlock(MachineBasicBlock *BB, const DomSetType &frontier) {
77 return Base.addBasicBlock(BB, frontier);

Completed in 1453 milliseconds