HomeSort by relevance Sort by last modified time
    Searched refs:Range (Results 51 - 75 of 849) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/lib/CodeGen/
SafeStackLayout.cpp 28 << "), range " << Regions[i].Range << "\n";
37 const StackColoring::LiveRange &Range) {
38 StackObjects.push_back({V, Size, Alignment, Range});
54 Regions.emplace_back(Start, End, Obj.Range);
60 << ", range " << Obj.Range << "\n");
67 << ", range " << R.Range << "\n");
73 if (Obj.Range.Overlaps(R.Range))
    [all...]
LiveIntervalUnion.cpp 29 void LiveIntervalUnion::unify(LiveInterval &VirtReg, const LiveRange &Range) {
30 if (Range.empty())
35 LiveRange::const_iterator RegPos = Range.begin();
36 LiveRange::const_iterator RegEnd = Range.end();
56 void LiveIntervalUnion::extract(LiveInterval &VirtReg, const LiveRange &Range) {
57 if (Range.empty())
62 LiveRange::const_iterator RegPos = Range.begin();
63 LiveRange::const_iterator RegEnd = Range.end();
73 RegPos = Range.advanceTo(RegPos, SegPos.start());
  /system/core/libmemunreachable/
HeapWalker.cpp 35 Range range{begin, end};
36 auto inserted = allocations_.insert(std::pair<Range, AllocationInfo>(range, AllocationInfo{}));
40 allocation_bytes_ += range.size();
43 Range overlap = inserted.first->first;
44 if (overlap != range) {
45 ALOGE("range %p-%p overlaps with existing range %p-%p",
55 bool HeapWalker::WordContainsAllocationPtr(uintptr_t word_ptr, Range* range, AllocationInfo** info)
76 Range range = to_do.back(); local
    [all...]
LeakFolding.h 31 const Range range; member in struct:LeakFolding::Leak
69 const Range range; member in struct:LeakFolding::LeakInfo
73 LeakInfo(const Range& range, Allocator<LeakInfo> allocator)
74 : node(this, allocator), range(range),
84 allocator::map<Range, LeakInfo, compare_range> leak_map_;
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBit.cs 29 uint newBound = (encoder.Range >> kNumBitModelTotalBits) * Prob;
32 encoder.Range = newBound;
38 encoder.Range -= newBound;
41 if (encoder.Range < Encoder.kTopValue)
43 encoder.Range <<= 8;
91 uint newBound = (uint)(rangeDecoder.Range >> kNumBitModelTotalBits) * (uint)Prob;
94 rangeDecoder.Range = newBound;
96 if (rangeDecoder.Range < Decoder.kTopValue)
99 rangeDecoder.Range <<= 8;
105 rangeDecoder.Range -= newBound;
    [all...]
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 30 SourceRange Range)
31 : PreprocessingDirective(InclusionDirectiveKind, Range),
47 /// that source range \p Range encompasses.
49 PreprocessingRecord::getPreprocessedEntitiesInRange(SourceRange Range) {
50 if (Range.isInvalid())
53 if (CachedRangeQuery.Range == Range) {
58 std::pair<int, int> Res = getPreprocessedEntitiesInRangeSlow(Range);
60 CachedRangeQuery.Range = Range
    [all...]
  /external/llvm/include/llvm/ADT/
STLExtras.h 373 bool all_of(R &&Range, UnaryPredicate &&P) {
374 return std::all_of(Range.begin(), Range.end(),
381 bool any_of(R &&Range, UnaryPredicate &&P) {
382 return std::any_of(Range.begin(), Range.end(),
389 bool none_of(R &&Range, UnaryPredicate &&P) {
390 return std::none_of(Range.begin(), Range.end(),
397 auto find(R &&Range, const T &val) -> decltype(Range.begin())
    [all...]
  /frameworks/base/tools/aapt2/compile/
Image.h 67 * A range of pixel values, starting at 'start' and ending before 'end'
70 struct Range {
74 explicit Range() = default;
75 inline explicit Range(int32_t s, int32_t e) : start(s), end(e) {}
78 inline bool operator==(const Range& left, const Range& right) {
163 std::vector<Range> horizontal_stretch_regions;
170 std::vector<Range> vertical_stretch_regions;
203 ::std::ostream& operator<<(::std::ostream& out, const Range& range);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
RegularContiguousSet.java 35 private final Range<C> range; field in class:RegularContiguousSet
37 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) {
39 this.range = range;
42 private ContiguousSet<C> intersectionInCurrentDomain(Range<C> other) {
43 return (range.isConnected(other))
44 ? ContiguousSet.create(range.intersection(other), domain)
49 return intersectionInCurrentDomain(Range.upTo(toElement, BoundType.forBoolean(inclusive)))
132 @Override public Range<C> range() { method
136 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { method
    [all...]
ContiguousSet.java 29 * {@code ContiguousSet.create(Range.greaterThan(0), DiscreteDomain.integers()}). Certain
42 * {@linkplain Range#contains contained} by the range.
44 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if
50 Range<C> range, DiscreteDomain<C> domain) {
51 checkNotNull(range);
53 Range<C> effectiveRange = range;
55 if (!range.hasLowerBound())
122 public abstract Range<C> range(); method in class:ContiguousSet
135 public abstract Range<C> range(BoundType lowerBoundType, BoundType upperBoundType); method in class:ContiguousSet
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 78 /// \brief The source range that covers this preprocessed entity.
79 SourceRange Range;
82 PreprocessedEntity(EntityKind Kind, SourceRange Range)
83 : Kind(Kind), Range(Range) { }
91 /// \brief Retrieve the source range that covers this entire preprocessed
93 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
125 PreprocessingDirective(EntityKind Kind, SourceRange Range)
126 : PreprocessedEntity(Kind, Range) { }
142 SourceRange Range)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ITokenStream.cs 48 int Range {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ITokenStream.cs 50 int Range
  /external/clang/include/clang/Sema/
LoopHint.h 22 // Source range of the directive.
23 SourceRange Range;
  /external/clang/tools/clang-format/fuzzer/
ClangFormatFuzzer.cpp 24 Style, s, {clang::tooling::Range(0, s.size())}));
  /external/easymock/src/org/easymock/internal/
IMocksBehavior.java 21 void addExpected(ExpectedInvocation expected, Result result, Range count);
  /external/libcxx/benchmarks/
string.bench.cpp 12 std::string s1(state.range(0), '-');
17 BENCHMARK(BM_StringFindNoMatch)->Range(10, MAX_STRING_LEN);
22 std::string s2(state.range(0), '-');
26 BENCHMARK(BM_StringFindAllMatch)->Range(1, MAX_STRING_LEN);
31 s1 += std::string(state.range(0), '-');
32 std::string s2(state.range(0), '-');
36 BENCHMARK(BM_StringFindMatch1)->Range(1, MAX_STRING_LEN / 4);
41 s1 += std::string(state.range(0), '-');
42 s1 += std::string(state.range(0), '*');
43 std::string s2(state.range(0), '-')
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 34 struct Range {
35 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
54 bool operator<(const Range &other) const {
58 uint64_t LowPC; // Start of address range.
59 uint32_t Length; // End of address range (not including this address).
77 typedef std::vector<Range> RangeColl;
  /external/llvm/include/llvm/Support/
UnicodeCharRanges.h 26 /// \brief Represents a closed range of Unicode code points [Lower, Upper].
32 inline bool operator<(uint32_t Value, UnicodeCharRange Range) {
33 return Value < Range.Lower;
35 inline bool operator<(UnicodeCharRange Range, uint32_t Value) {
36 return Range.Upper < Value;
73 /// \brief Returns true if each of the ranges is a proper closed range
  /frameworks/base/core/java/android/hardware/camera2/params/
HighSpeedVideoConfiguration.java 23 import android.util.Range;
64 mFpsRange = new Range<Integer>(mFpsMin, mFpsMax);
122 * Convenience method to return the FPS range of this high speed video configuration.
124 * @return a Range with high bound >= {@value #HIGH_SPEED_MAX_MINIMAL_FPS}
126 public Range<Integer> getFpsRange() {
171 private final Range<Integer> mFpsRange;
  /external/clang/unittests/Format/
CleanupTest.cpp 24 const std::vector<tooling::Range> &Ranges,
46 std::vector<tooling::Range> Ranges;
47 Ranges.push_back(tooling::Range(28, 0));
48 Ranges.push_back(tooling::Range(91, 6));
49 Ranges.push_back(tooling::Range(132, 0));
66 std::vector<tooling::Range> Ranges(1, tooling::Range(0, Code.size()));
78 // Set the changed range to be the second "\n".
79 std::vector<tooling::Range> Ranges(1, tooling::Range(14, 0))
    [all...]
  /external/clang/unittests/Lex/
PPCallbacksTest.cpp 147 // Get the raw source string of the range.
148 StringRef GetSourceString(CharSourceRange Range) {
149 const char* B = SourceMgr.getCharacterData(Range.getBegin());
150 const char* E = SourceMgr.getCharacterData(Range.getEnd());
188 // Callbacks have been executed at this point -- return filename range.
245 CharSourceRange Range =
248 ASSERT_EQ("\"quoted.h\"", GetSourceString(Range));
255 CharSourceRange Range =
258 ASSERT_EQ("<angled.h>", GetSourceString(Range));
266 CharSourceRange Range
    [all...]
  /external/google-benchmark/test/
complexity_test.cc 54 state.SetComplexityN(state.range(0));
56 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(benchmark::o1);
57 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity();
58 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity([](int) {
94 auto v = ConstructRandomVector(state.range(0));
96 state.range(0) * 2; // Test worst case scenario (item not in vector)
100 state.SetComplexityN(state.range(0));
104 ->Range(1 << 10, 1 << 16)
108 ->Range(1 << 10, 1 << 16)
112 ->Range(1 << 10, 1 << 16
    [all...]
  /external/libcxx/utils/google-benchmark/test/
complexity_test.cc 54 state.SetComplexityN(state.range(0));
56 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(benchmark::o1);
57 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity();
58 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity([](int) {
94 auto v = ConstructRandomVector(state.range(0));
96 state.range(0) * 2; // Test worst case scenario (item not in vector)
100 state.SetComplexityN(state.range(0));
104 ->Range(1 << 10, 1 << 16)
108 ->Range(1 << 10, 1 << 16)
112 ->Range(1 << 10, 1 << 16
    [all...]
  /libcore/ojluni/src/main/java/java/awt/font/
NumericShaper.java 82 * enum-based ones, such as {@link NumericShaper.Range#ARABIC}.
88 * or creating a {@code Set} with the {@link NumericShaper.Range}
91 * EnumSet.of(NumericShaper.Scirpt.ARABIC, NumericShaper.Range.TAMIL)
96 * Unicode range values are mapped to their counterparts where such
97 * mapping is possible, such as {@code NumericShaper.Range.ARABIC}
98 * from/to {@code NumericShaper.ARABIC}. If any unmappable range
99 * values are specified, such as {@code NumericShaper.Range.BALINESE},
104 * <p>A Unicode range may have more than one set of decimal digits. If
106 * range, one of the sets will take precedence as follows.
110 * <th class="TableHeadingColor">Unicode Range</th
577 Range range = ranges[mid]; local
    [all...]

Completed in 334 milliseconds

1 23 4 5 6 7 8 91011>>