Searched refs:Range (Results 176 - 200 of 489) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h87 void unify(LiveInterval &VirtReg, const LiveRange &Range);
93 void extract(LiveInterval &VirtReg, const LiveRange &Range);
/external/lzma/C/
H A DPpmd7.h110 UInt32 Range; member in struct:__anon14037
127 UInt32 Range; member in struct:__anon14038
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c263 SID(decl->Range.First);
264 if (decl->Range.First != decl->Range.Last) {
266 SID(decl->Range.Last);
356 if (decl->Range.Last < 10)
358 else if (decl->Range.Last < 100) {
361 } else if (decl->Range.Last < 1000) {
374 for(i = 1; i <= decl->Range.Last; ++i) {
H A Dtgsi_parse.h68 struct tgsi_declaration_range Range; member in struct:tgsi_full_declaration
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h444 class Range
447 Range(int a, int b) : next(0), bgn(a), end(b) { }
449 Range *next;
453 void coalesce(Range **ptail)
455 Range *rnn;
469 Range *head;
470 Range *tail;
574 Range *r = head;
/external/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h76 bool rangeIntersectsConditionalDirective(SourceRange Range) const;
/external/clang/lib/CodeGen/
H A DCoverageMappingGen.h43 void SourceRangeSkipped(SourceRange Range) override;
/external/clang/lib/Format/
H A DTokenAnalyzer.h56 ArrayRef<tooling::Range> Ranges);
H A DWhitespaceManager.h196 /// \brief Stores \p Text as the replacement for the whitespace in \p Range.
197 void storeReplacement(SourceRange Range, StringRef Text);
/external/clang/tools/clang-format/
H A DClangFormat.cpp131 std::vector<tooling::Range> &Ranges) {
163 Ranges.push_back(tooling::Range(Offset, Length));
196 Ranges.push_back(tooling::Range(Offset, Length));
250 std::vector<tooling::Range> Ranges;
/external/easymock/src/org/easymock/internal/
H A DReplayState.java131 public void times(Range range) {
H A DUnorderedBehavior.java35 Range count) {
/external/libvpx/libvpx/test/
H A Daq_segment_test.cc108 ::testing::Range(3, 9));
H A Dtile_independence_test.cc103 VP9_INSTANTIATE_TEST_CASE(TileIndependenceTest, ::testing::Range(0, 2, 1));
/external/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp239 void removeImpDefSegments(LiveRange &Range);
240 void updateDeadsInRange(unsigned Reg, LaneBitmask LM, LiveRange &Range);
396 void HexagonExpandCondsets::removeImpDefSegments(LiveRange &Range) { argument
401 Range.segments.erase(std::remove_if(Range.begin(), Range.end(), StartImpDef),
402 Range.end());
406 LiveRange &Range) {
408 if (Range.empty())
453 for (auto &Seg : Range) {
405 updateDeadsInRange(unsigned Reg, LaneBitmask LM, LiveRange &Range) argument
[all...]
H A DHexagonBlockRanges.h107 void add(const IndexRange &Range) { argument
108 push_back(Range);
112 void subtract(const IndexRange &Range);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBufferedTokenStream.cs103 public virtual int Range { property in class:Antlr.Runtime.BufferedTokenStream
268 if (i > Range)
269 Range = i;
H A DLegacyCommonTokenStream.cs108 public virtual int Range { property in class:Antlr.Runtime.LegacyCommonTokenStream
312 if (i > Range)
313 Range = i;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBufferedTokenStream.cs112 public virtual int Range property in class:Antlr.Runtime.BufferedTokenStream
305 if (i > Range)
306 Range = i;
H A DLegacyCommonTokenStream.cs112 public virtual int Range property in class:Antlr.Runtime.LegacyCommonTokenStream
355 if (i > Range)
356 Range = i;
/external/llvm/tools/dsymutil/
H A DDwarfLinker.cpp725 for (const auto &Range : Entries) {
726 if (Range.isBaseAddressSelectionEntry(AddressSize)) {
732 if (Range.StartAddress == Range.EndAddress)
736 if (!(Range.StartAddress + OrigLowPc >= FuncRange.start() &&
737 Range.EndAddress + OrigLowPc <= FuncRange.stop()))
739 MS->EmitIntValue(Range.StartAddress + PcOffset, AddressSize);
740 MS->EmitIntValue(Range.EndAddress + PcOffset, AddressSize);
763 for (auto Range = FunctionRanges.begin(), End = FunctionRanges.end();
764 Range !
3047 auto Range = Ranges.lower_bound(Row.Address); local
3155 auto Range = Ranges.upper_bound(Loc); local
[all...]
/external/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp130 for (const auto &Range : HighlightedRanges)
131 errs() << "Highlighted line " << LineNumber << ", " << Range.first
132 << " -> " << Range.second << '\n';
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp1041 static unsigned CountNumNewlinesBetween(StringRef Range, argument
1046 Range = Range.substr(Range.find_first_of("\n\r"));
1047 if (Range.empty()) return NumNewLines;
1052 if (Range.size() > 1 &&
1053 (Range[1] == '\n' || Range[1] == '\r') &&
1054 (Range[0] != Range[
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc224 static Range *upperBound(MemoryLocation Loc, Range *Ranges,
226 Range *Best = 0;
247 Range *Ranges, unsigned NumRanges,
280 Range *InRange = upperBound(Min, Ranges, NumRanges);
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
H A DSetGenerators.java35 import com.google.common.collect.Range;
271 * defer that to Range, since it's ContiguousSet.create() that's used to create the sets. However,
272 * that gets messy here, and we already have null tests for Range.
322 return ContiguousSet.create(Range.openClosed(0, 1), DiscreteDomain.integers()).subSet(0, 1);
343 Range<Integer> range =
344 (elements.isEmpty()) ? Range.closedOpen(0, 0) : Range.encloseAll(elements);

Completed in 1897 milliseconds

1234567891011>>