Searched refs:frontier (Results 1 - 8 of 8) sorted by relevance

/external/compiler-rt/lib/lsan/
H A Dlsan_common_linux.cc57 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) { argument
92 dl_iterate_phdr(ProcessGlobalRegionsCallback, frontier);
106 Frontier *frontier; member in struct:__lsan::ProcessPlatformAllocParam
111 // reachable. Marks them as reachable and adds them to the frontier.
127 param->frontier->push_back(chunk);
149 void ProcessPlatformSpecificAllocations(Frontier *frontier) { argument
[all...]
H A Dlsan_common.cc156 // 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);
205 Frontier *frontier) {
232 ScanRangeForPointers(registers_begin, registers_end, frontier,
246 ScanRangeForPointers(stack_begin, stack_end, frontier, "STAC
161 ScanRangeForPointers(uptr begin, uptr end, Frontier *frontier, const char *region_type, ChunkTag tag) argument
204 ProcessThreads(SuspendedThreadsList const &suspended_threads, Frontier *frontier) argument
270 ProcessRootRegion(Frontier *frontier, uptr root_begin, uptr root_end) argument
291 ProcessRootRegions(Frontier *frontier) argument
301 FloodFillTag(Frontier *frontier, ChunkTag tag) argument
[all...]
H A Dlsan_common.h124 void ProcessGlobalRegions(Frontier *frontier);
125 void ProcessPlatformSpecificAllocations(Frontier *frontier);
128 Frontier *frontier,
/external/chromium_org/chrome/test/ispy/common/
H A Dimage_tools.py188 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()
/external/llvm/include/llvm/Analysis/
H A DDominanceFrontier.h11 // dominance frontier for a function.
66 iterator addBasicBlock(BasicBlock *BB, const DomSetType &frontier) { argument
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/third_party/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js249 cm.doc.frontier = cm.doc.first;
1379 if (cm.doc.mode.startState && cm.doc.frontier < cm.display.viewTo)
1385 if (doc.frontier < doc.first) doc.frontier = doc.first;
1386 if (doc.frontier >= cm.display.viewTo) return;
1388 var state = copyState(doc.mode, getStateBefore(cm, doc.frontier));
1391 doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function(line) {
1392 if (doc.frontier >= cm.display.viewFrom) { // Visible
1400 if (ischange) regLineChange(cm, doc.frontier, "text");
1404 line.stateAfter = doc.frontier
[all...]
/external/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js249 cm.doc.frontier = cm.doc.first;
1379 if (cm.doc.mode.startState && cm.doc.frontier < cm.display.viewTo)
1385 if (doc.frontier < doc.first) doc.frontier = doc.first;
1386 if (doc.frontier >= cm.display.viewTo) return;
1388 var state = copyState(doc.mode, getStateBefore(cm, doc.frontier));
1391 doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function(line) {
1392 if (doc.frontier >= cm.display.viewFrom) { // Visible
1400 if (ischange) regLineChange(cm, doc.frontier, "text");
1404 line.stateAfter = doc.frontier
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcodemirror.js256 cm.doc.frontier = cm.doc.first;
1408 if (cm.doc.mode.startState && cm.doc.frontier < cm.display.viewTo)
1414 if (doc.frontier < doc.first) doc.frontier = doc.first;
1415 if (doc.frontier >= cm.display.viewTo) return;
1417 var state = copyState(doc.mode, getStateBefore(cm, doc.frontier));
1420 doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function(line) {
1421 if (doc.frontier >= cm.display.viewFrom) { // Visible
1431 if (ischange) changedLines.push(doc.frontier);
1435 line.stateAfter = doc.frontier
[all...]

Completed in 1087 milliseconds