HomeSort by relevance Sort by last modified time
    Searched refs:frontier (Results 1 - 7 of 7) 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 132 // chunks. Marks those chunks with |tag| and adds them to |frontier|.
136 // so |frontier| = 0.
138 Frontier *frontier,
168 if (frontier)
169 frontier->push_back(chunk);
174 Frontier *frontier = reinterpret_cast<Frontier *>(arg); local
175 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,
  /system/tools/aidl/tests/
test_util.cpp 136 for (auto it = output.crbegin(), frontier = output.crbegin();
138 while (frontier != output.crend() && distance(it, frontier) <= 3) {
142 if ((*frontier)[0] != ' ') {
146 frontier++;
  /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);
  /external/v8/tools/turbolizer/
graph-view.js 253 let frontier = new Set();
259 frontier.add(edge);
264 return frontier;
269 var frontier = new Set();
285 frontier.add(node);
291 return frontier.has(n);
559 var frontier = graph.getNodeFrontier(state.selection.selection, inEdges, filter);
560 if (frontier != undefined) {
565 state.selection.select(frontier[0], true);

Completed in 132 milliseconds