HomeSort by: relevance | last modified time | path
    Searched refs:Range (Results 1 - 25 of 471) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_range.h 9 // Contais Range and related utilities.
21 struct Range {
26 inline bool operator==(const Range &lhs, const Range &rhs) {
30 inline bool operator!=(const Range &lhs, const Range &rhs) {
35 void Intersect(ArrayRef<Range> a, ArrayRef<Range> b,
36 InternalMmapVectorNoCtor<Range> &output);
sanitizer_range.cpp 15 void Intersect(ArrayRef<Range> a, ArrayRef<Range> b,
16 InternalMmapVectorNoCtor<Range> &output) {
26 for (const Range &r : a) {
32 for (const Range &r : b) {
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
Types.cpp 18 const char *llvm::getMinimalTypeForRange(uint64_t Range, unsigned MaxSize LLVM_ATTRIBUTE_UNUSED) {
25 assert(((MaxSize > 32) ? Range <= 0xFFFFFFFFFFFFFFFFULL
26 : Range <= 0xFFFFFFFFULL) &&
29 if (Range > 0xFFFFFFFFULL)
31 if (Range > 0xFFFF)
33 if (Range > 0xFF)
Types.h 15 /// Returns the smallest unsigned integer type that can hold the given range.
18 const char *getMinimalTypeForRange(uint64_t Range, unsigned MaxSize = 64);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
FixIt.cpp 21 StringRef getText(CharSourceRange Range, const ASTContext &Context) {
22 return Lexer::getSourceText(Range, Context.getSourceManager(),
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
FunctionInfo.h 16 #include "llvm/DebugInfo/GSYM/Range.h"
28 /// address range. If a function has discontiguous address ranges, they will
90 AddressRange Range;
96 : Range(Addr, Addr + Size), Name(N) {}
101 /// range and name. When converting information from a symbol table and from
103 /// same range and we need to be able to tell which one is the better object
173 uint64_t startAddress() const { return Range.Start; }
174 uint64_t endAddress() const { return Range.End; }
175 uint64_t size() const { return Range.size(); }
176 void setStartAddress(uint64_t Addr) { Range.Start = Addr;
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/
Annotations.h 23 /// void err() { [["hello" == 42]]; } // [[this is a range]]
31 /// llvm::Range R = Example.range("fail"); // find named ranges
49 /// represents a half-open range.
50 struct Range {
54 friend bool operator==(const Range &L, const Range &R) {
57 friend bool operator!=(const Range &L, const Range &R) { return !(L == R); }
74 /// Returns the location of the range marked by [[ ]] (or $name[[ ]])
    [all...]
  /src/external/bsd/zstd/dist/contrib/pzstd/utils/
Range.h 11 * A subset of `folly/Range.h`.
50 class Range {
62 constexpr Range() : b_(), e_() {}
63 constexpr Range(Iter begin, Iter end) : b_(begin), e_(end) {}
65 constexpr Range(Iter begin, size_type size) : b_(begin), e_(begin + size) {}
68 /* implicit */ Range(Iter str) : b_(str), e_(str + std::strlen(str)) {}
71 /* implicit */ Range(const std::string& str)
74 // Allow implicit conversion from Range<From> to Range<To> if From is
82 constexpr /* implicit */ Range(const Range<OtherIter>& other
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFLocationExpression.h 23 /// The address range in which this expression is valid. None denotes a
26 Optional<DWARFAddressRange> Range;
34 return L.Range == R.Range && L.Expr == R.Expr;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
SourceCode.cpp 31 StringRef clang::tooling::getText(CharSourceRange Range,
33 return Lexer::getSourceText(Range, Context.getSourceManager(),
37 CharSourceRange clang::tooling::maybeExtendRange(CharSourceRange Range,
40 CharSourceRange R = Lexer::getAsCharRange(Range, Context.getSourceManager(),
43 return Range;
49 return Range;
50 return CharSourceRange::getTokenRange(Range.getBegin(), Tok.getLocation());
53 llvm::Error clang::tooling::validateEditRange(const CharSourceRange &Range,
55 if (Range.isInvalid())
57 "Invalid range");
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
Range.cpp 1 //===- Range.cpp ------------------------------------------------*- C++ -*-===//
10 #include "llvm/DebugInfo/GSYM/Range.h"
20 void AddressRanges::insert(AddressRange Range) {
21 if (Range.size() == 0)
24 auto It = llvm::upper_bound(Ranges, Range);
26 while (It2 != Ranges.end() && It2->Start < Range.End)
29 Range.End = std::max(Range.End, It2[-1].End);
32 if (It != Ranges.begin() && Range.Start < It[-1].End)
33 It[-1].End = std::max(It[-1].End, Range.End)
    [all...]
  /src/external/mit/isl/dist/include/isl/
typed_cpp.h 18 template <typename Domain, typename Range>
212 template <typename Range>
213 inline typed::union_pw_multi_aff<Range> apply(const typed::union_pw_multi_aff<Anonymous, Range> &upma2) const;
276 template <typename Range>
277 inline typed::multi_aff<pair<Anonymous, Range>> product(const typed::multi_aff<Range> &multi2) const;
278 template <typename Range>
279 inline typed::multi_pw_aff<pair<Anonymous, Range>> product(const typed::multi_pw_aff<Range> &multi2) const
17400 typed::set<Range> typed::basic_map<Domain, Range>::range() const function in class:isl::typed::typed::basic_map
18100 typed::set<Range2> typed::basic_map<pair<Domain, Range>, Range2>::range() const function in class:isl::typed::typed::basic_map
18790 typed::set<Domain> typed::basic_map<Domain, Domain>::range() const function in class:isl::typed::typed::basic_map
19462 typed::set<pair<Range, Range2>> typed::basic_map<Domain, pair<Range, Range2>>::range() const function in class:isl::typed::typed::basic_map
20250 typed::set<pair<T1, T2>> typed::basic_map<pair<T1, T2>, pair<T1, T2>>::range() const function in class:isl::typed::typed::basic_map
20967 typed::set<pair<Range, Range2>> typed::basic_map<pair<T1, T2>, pair<Range, Range2>>::range() const function in class:isl::typed::typed::basic_map
23119 typed::set<Range> typed::map<Domain, Range>::range() const function in class:isl::typed::typed::map
23975 typed::set<Range2> typed::map<pair<Domain, Range>, Range2>::range() const function in class:isl::typed::typed::map
24957 typed::set<Domain> typed::map<Domain, Domain>::range() const function in class:isl::typed::typed::map
25785 typed::set<pair<Range, Range2>> typed::map<Domain, pair<Range, Range2>>::range() const function in class:isl::typed::typed::map
26893 typed::set<pair<T1, T2>> typed::map<pair<T1, T2>, pair<T1, T2>>::range() const function in class:isl::typed::typed::map
27780 typed::set<pair<Range, Range2>> typed::map<pair<T1, T2>, pair<Range, Range2>>::range() const function in class:isl::typed::typed::map
43092 typed::space<Range> typed::space<Domain, Range>::range() const function in class:isl::typed::typed::space
43507 typed::space<Range2> typed::space<pair<Domain, Range>, Range2>::range() const function in class:isl::typed::typed::space
43670 typed::space<pair<Range, Range2>> typed::space<Domain, pair<Range, Range2>>::range() const function in class:isl::typed::typed::space
43868 typed::space<pair<Range, Range2>> typed::space<pair<T1, T2>, pair<Range, Range2>>::range() const function in class:isl::typed::typed::space
44413 typed::union_set<Range> typed::union_map<Domain, Range>::range() const function in class:isl::typed::typed::union_map
45101 typed::union_set<Range2> typed::union_map<pair<Domain, Range>, Range2>::range() const function in class:isl::typed::typed::union_map
45763 typed::union_set<Domain> typed::union_map<Domain, Domain>::range() const function in class:isl::typed::typed::union_map
46423 typed::union_set<pair<Range, Range2>> typed::union_map<Domain, pair<Range, Range2>>::range() const function in class:isl::typed::typed::union_map
47197 typed::union_set<pair<T1, T2>> typed::union_map<pair<T1, T2>, pair<T1, T2>>::range() const function in class:isl::typed::typed::union_map
47941 typed::union_set<pair<Range, Range2>> typed::union_map<pair<T1, T2>, pair<Range, Range2>>::range() const function in class:isl::typed::typed::union_map
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
SortJavaScriptImports.h 29 ArrayRef<tooling::Range> Ranges,
FormatInternal.h 58 /// Each range is extended on either end to its next bigger logic unit, i.e.
73 ArrayRef<tooling::Range> Ranges, unsigned FirstStartColumn,
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFLocationExpression.cpp 17 return OS << Loc.Range << ": "
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SafeStackLayout.h 30 StackLifetime::LiveRange Range;
33 const StackLifetime::LiveRange &Range)
34 : Start(Start), End(End), Range(Range) {}
43 StackLifetime::LiveRange Range;
59 const StackLifetime::LiveRange &Range);
SafeStackLayout.cpp 32 << "), range " << Regions[i].Range << "\n";
41 const StackLifetime::LiveRange &Range) {
42 StackObjects.push_back({V, Size, Alignment, Range});
59 Regions.emplace_back(Start, End, Obj.Range);
65 << Obj.Alignment << ", range " << Obj.Range << "\n");
72 << ", range " << R.Range << "\n");
78 if (Obj.Range.overlaps(R.Range))
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
range-chain.h 1 /* A range adapter that wraps multiple ranges
22 /* A range adapter that presents a number of ranges as if it were a
23 single range. That is, iterating over a range_chain will iterate
24 over each sub-range in order. */
25 template<typename Range>
28 /* The type of the iterator that is created by this range. */
33 iterator (const std::vector<Range> &ranges, size_t idx)
67 typename Range::iterator::value_type operator* () const
73 /* Skip empty sub-ranges. If this finds a valid sub-range,
92 range. *
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
range-chain.h 1 /* A range adapter that wraps multiple ranges
22 /* A range adapter that presents a number of ranges as if it were a
23 single range. That is, iterating over a range_chain will iterate
24 over each sub-range in order. */
25 template<typename Range>
28 /* The type of the iterator that is created by this range. */
33 iterator (const std::vector<Range> &ranges, size_t idx)
67 typename Range::iterator::value_type operator* () const
73 /* Skip empty sub-ranges. If this finds a valid sub-range,
92 range. *
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
package.d 39 import std.container, std.range;
95 import std.container, std.range;
113 user-provided random-access range.
138 its primary $(MREF_ALTTEXT range, std, range) type,
139 which is aliased as `C.Range`. For example, the primary range type of
140 `Array!int` is `Array!int.Range`.
143 a parameter of type `Range`, then it refers to the primary range type o
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/format/internal/
read.d 15 import std.range.primitives : ElementEncodingType, ElementType, isInputRange;
25 void skipData(Range, Char)(ref Range input, scope const ref FormatSpec!Char spec)
29 import std.range.primitives : empty, front, popFront;
58 T unformatValueImpl(T, Range, Char)(ref Range input, scope const ref FormatSpec!Char spec)
59 if (isInputRange!Range && is(immutable T == immutable bool))
73 T unformatValueImpl(T, Range, Char)(ref Range input, scope const ref FormatSpec!Char spec)
74 if (isInputRange!Range && is(T == typeof(null))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIBugReporter.cpp 37 SourceRange Range = RequestRegion->sourceRange();
39 if (Range.isValid())
40 Report->addRange(Range);
59 SourceRange Range = RequestRegion->sourceRange();
60 if (Range.isValid())
61 Report->addRange(Range);
80 SourceRange Range = RequestRegion->sourceRange();
81 if (Range.isValid())
82 Report->addRange(Range);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
ASTSelectionRequirements.cpp 18 Expected<SourceRange> Range =
20 if (!Range)
21 return Range.takeError();
24 findSelectedASTNodes(Context.getASTContext(), *Range);
27 Range->getBegin(), diag::err_refactor_selection_invalid_ast);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PreprocessingRecord.cpp 45 const FileEntry *File, SourceRange Range)
46 : PreprocessingDirective(InclusionDirectiveKind, Range), InQuotes(InQuotes),
57 /// that source range \p Range encompasses.
59 PreprocessingRecord::getPreprocessedEntitiesInRange(SourceRange Range) {
60 if (Range.isInvalid())
63 if (CachedRangeQuery.Range == Range) {
68 std::pair<int, int> Res = getPreprocessedEntitiesInRangeSlow(Range);
70 CachedRangeQuery.Range = Range
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
LoopHint.h 21 // Source range of the directive.
22 SourceRange Range;

Completed in 43 milliseconds

1 2 3 4 5 6 7 8 91011>>