/external/llvm/lib/CodeGen/ |
RegAllocGreedy.cpp | 50 STATISTIC(NumGlobalSplits, "Number of split global live ranges"); 51 STATISTIC(NumLocalSplits, "Number of split local live ranges"); 79 // Live ranges pass through a number of stages as we try to allocate them. 80 // Some of the stages may also create new live ranges: 87 // Ranges produced by one of the stages skip the previous stages when they are 343 // Prioritize live ranges by size, assigning larger ranges first. 356 // Unsplit ranges that couldn't be allocated immediately are deferred until 357 // everything else has been allocated. Long ranges are allocated last so 361 // Everything else is allocated in long->short order. Long ranges that don' [all...] |
LiveDebugVariables.h | 47 /// splitRegister - Move any user variables in OldReg to the live ranges in
|
SplitKit.h | 1 //===-------- SplitKit.h - Toolkit for splitting live ranges ----*- C++ -*-===// 136 /// can create live ranges that end in mid-air. 201 /// - Mark the ranges where the new interval is used with useIntv* 243 /// The new value has no live ranges anywhere. 327 // LiveInBlocks get a known live-in value. Add live ranges to the blocks. 330 /// transferValues - Transfer values to the new ranges. 331 /// Return true if any ranges were skipped. 334 /// extendPHIKillRanges - Extend the ranges of all values killed by original 409 /// finish - after all the new live ranges have been created, compute the
|
RegisterCoalescer.cpp | 363 // live-range starts. If there are no intervening live ranges between them in 452 LiveInterval::Ranges::iterator BI = 453 std::upper_bound(IntB.ranges.begin(), IntB.ranges.end(), AI->start); 454 if (BI != IntB.ranges.begin()) 456 for (; BI != IntB.ranges.end() && AI->end >= BI->start; ++BI) { 654 // Extend BValNo by merging in IntA live ranges of AValNo. Val# definition [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
PathDiagnostic.h | 176 std::vector<SourceRange> ranges; member in class:clang::ento::PathDiagnosticPiece 202 void addRange(SourceRange R) { ranges.push_back(R); } 205 ranges.push_back(SourceRange(B,E)); 215 return ranges.empty() ? NULL : &ranges[0]; 219 return ranges_begin() + ranges.size();
|
/external/chromium/chrome/browser/printing/ |
print_dialog_gtk.cc | 151 const printing::PageRanges& ranges) { 185 InitPrintSettings(ranges); 271 // Handle page ranges.
|
print_dialog_gtk.h | 43 const printing::PageRanges& ranges);
|
/external/clang/lib/ARCMigrate/ |
PlistReporter.cpp | 103 // ranges of the diagnostics. 178 // Output the ranges (if any). 182 o << " <key>ranges</key>\n";
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
stl_algobase.h | 154 * The ranges must not overlap. 301 // because the input and output ranges are permitted to overlap.) 946 * This compares the elements of two ranges using @c == and returns true or 948 * ranges are equal. [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_algobase.h | 154 * The ranges must not overlap. 301 // because the input and output ranges are permitted to overlap.) 946 * This compares the elements of two ranges using @c == and returns true or 948 * ranges are equal. [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_algobase.h | 154 * The ranges must not overlap. 301 // because the input and output ranges are permitted to overlap.) 946 * This compares the elements of two ranges using @c == and returns true or 948 * ranges are equal. [all...] |
/external/chromium/net/disk_cache/ |
stats_histogram.cc | 66 Histogram::Sample StatsHistogram::ranges(size_t i) const { function in class:disk_cache::StatsHistogram
|
/external/chromium/net/url_request/ |
url_request_file_job.cc | 286 std::vector<HttpByteRange> ranges; local 287 if (HttpUtil::ParseRangeHeader(range_header, &ranges)) { 288 if (ranges.size() == 1) { 289 byte_range_ = ranges[0];
|
/external/clang/include/clang/Frontend/ |
Analyses.def | 27 ANALYSIS_CONSTRAINTS(RangeConstraints, "range", "Use constraint tracking of concrete value ranges", CreateRangeConstraintManager)
|
TextDiagnosticPrinter.h | 69 void EmitCaretDiagnostic(SourceLocation Loc, CharSourceRange *Ranges,
|
/external/clang/lib/Frontend/ |
TextDiagnosticPrinter.cpp | 346 CharSourceRange *Ranges, 372 // FIXME: Map ranges? 373 EmitCaretDiagnostic(OneLevelUp, Ranges, NumRanges, SM, 380 // Map the ranges. 382 CharSourceRange &R = Ranges[i]; 415 EmitCaretDiagnostic(Loc, Ranges, NumRanges, SM, 0, 0, 469 // Highlight all of the characters covered by Ranges with ~ characters. 474 HighlightRange(Ranges[i], SM, LineNo, FID, CaretLine, SourceLine); 632 // Adjust for token ranges. [all...] |
/external/llvm/include/llvm/Support/ |
ConstantRange.h | 15 // ranges: : 22 // The other integral ranges use min/max values for special range values. For 28 // unsigned ranges. 160 /// include all elements contained in both input ranges, and to have the
|
/external/webkit/Source/WebCore/css/ |
CSSFontFace.h | 53 const Vector<UnicodeRange>& ranges() const { return m_ranges; } function in class:WebCore::CSSFontFace
|
/external/webkit/Source/WebCore/dom/ |
ExceptionCode.h | 26 // numerical ranges for different types of DOM exception, so that
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/ |
exception.hpp | 61 // A join cannot be performed logical reasons (i.e., the ranges of
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/ |
exception.hpp | 61 // A join cannot be performed logical reasons (i.e., the ranges of
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/ |
exception.hpp | 61 // A join cannot be performed logical reasons (i.e., the ranges of
|
/external/opencv/cv/src/ |
cvhistogram.cpp | 45 cvCreateHist( int dims, int *sizes, CvHistType type, float** ranges, int uniform ) 78 if( ranges ) 79 CV_CALL( cvSetHistBinRanges( hist, ranges, uniform )); 93 float *data, float **ranges, int uniform ) 112 if( ranges ) 115 CV_ERROR( CV_StsBadArg, "Only uniform bin ranges can be used here " 117 CV_CALL( cvSetHistBinRanges( hist, ranges, uniform )); 661 float* ranges[CV_MAX_DIM]; local 705 ranges[i] = (float*)src->thresh[i]; 706 thresh = ranges; [all...] |
/external/valgrind/main/VEX/priv/ |
host_generic_reg_alloc2.c | 58 /* Records information on virtual register live ranges. Computed once 75 /* Records information on real-register live ranges. Computed once 481 /* --------- Stage 1: compute vreg live ranges. --------- */ 482 /* --------- Stage 2: compute rreg live ranges. --------- */ 484 /* ------ start of SET UP TO COMPUTE VREG LIVE RANGES ------ */ 504 /* ------ end of SET UP TO COMPUTE VREG LIVE RANGES ------ */ 506 /* ------ start of SET UP TO COMPUTE RREG LIVE RANGES ------ */ 509 exactly all the live ranges of all the allocatable real regs, 528 /* ------ end of SET UP TO COMPUTE RREG LIVE RANGES ------ */ 543 /* ------ start of DEAL WITH VREG LIVE RANGES ------ * [all...] |
/external/clang/test/Analysis/ |
plist-output.m | 61 // CHECK: <key>ranges</key> 123 // CHECK: <key>ranges</key> 199 // CHECK: <key>ranges</key> 261 // CHECK: <key>ranges</key> 337 // CHECK: <key>ranges</key> 399 // CHECK: <key>ranges</key> 475 // CHECK: <key>ranges</key> 537 // CHECK: <key>ranges</key> 613 // CHECK: <key>ranges</key> 709 // CHECK: <key>ranges</key [all...] |