| /netbsd-src/external/mit/isl/dist/include/isl/ |
| H A D | 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> &u… 276 template <typename Range> 277 …inline typed::multi_aff<pair<Anonymous, Range>> product(const typed::multi_aff<Range> &multi2) con… 278 template <typename Range> 279 …inline typed::multi_pw_aff<pair<Anonymous, Range>> product(const typed::multi_pw_aff<Range> &multi… 280 template <typename Range> 281 …inline typed::pw_multi_aff<pair<Anonymous, Range>> product(const typed::pw_multi_aff<Range> &pma2)… 960 template <typename Domain, typename Range> [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/ |
| H A D | SourceCode.cpp | 31 StringRef clang::tooling::getText(CharSourceRange Range, in getText() argument 33 return Lexer::getSourceText(Range, Context.getSourceManager(), in getText() 37 CharSourceRange clang::tooling::maybeExtendRange(CharSourceRange Range, in maybeExtendRange() argument 40 CharSourceRange R = Lexer::getAsCharRange(Range, Context.getSourceManager(), in maybeExtendRange() 43 return Range; in maybeExtendRange() 49 return Range; in maybeExtendRange() 50 return CharSourceRange::getTokenRange(Range.getBegin(), Tok.getLocation()); in maybeExtendRange() 53 llvm::Error clang::tooling::validateEditRange(const CharSourceRange &Range, in validateEditRange() argument 55 if (Range.isInvalid()) in validateEditRange() 59 if (Range.getBegin().isMacroID() || Range.getEnd().isMacroID()) in validateEditRange() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/internal/ |
| H A D | read.d | 25 void skipData(Range, Char)(ref Range input, scope const ref FormatSpec!Char spec) in skipData() argument 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))) 85 T unformatValueImpl(T, Range, Char)(ref Range input, scope const ref FormatSpec!Char spec) 86 if (isInputRange!Range && isIntegral!T && !is(T == enum) && isSomeChar!(ElementType!Range)) 94 static if (is(immutable ElementEncodingType!Range == immutable char) 95 || is(immutable ElementEncodingType!Range == immutable byte) 96 || is(immutable ElementEncodingType!Range == immutable ubyte)) [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/ |
| H A D | FunctionInfo.h | 90 AddressRange Range; member 96 : Range(Addr, Addr + Size), Name(N) {} 173 uint64_t startAddress() const { return Range.Start; } in startAddress() 174 uint64_t endAddress() const { return Range.End; } in endAddress() 175 uint64_t size() const { return Range.size(); } in size() 176 void setStartAddress(uint64_t Addr) { Range.Start = Addr; } in setStartAddress() 177 void setEndAddress(uint64_t Addr) { Range.End = Addr; } in setEndAddress() 178 void setSize(uint64_t Size) { Range.End = Range.Start + Size; } in setSize() 181 Range = {0, 0}; in clear() 189 return LHS.Range == RHS.Range && LHS.Name == RHS.Name && [all …]
|
| /netbsd-src/external/mit/isl/dist/interface/ |
| H A D | template_cpp.cc | 141 static TupleKindPtr Range("Range"); variable 411 static Signature un_map = { { Domain, Range }, { { Domain, Range } } }; 422 { { Domain, Range }, { { Domain, Range }, { Domain, Range } } }; 427 { { Domain, Range }, { { Domain, Range }, { } } }; 429 { { Domain, Range }, { { Domain, Range }, { Domain } } }; 431 { { Domain, Range }, { { Domain, Range }, { Range } } }; 433 { { { Domain, Domain2 }, Range }, 434 { { { Domain, Domain2 }, Range }, { Domain } } }; 436 { { Domain, { Range, Range2 } }, 437 { { Domain, { Range, Range2 } }, { Range } } }; [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/ |
| H A D | package.d | 583 struct Range in TotalContainer() struct 586 Range primitives. in TotalContainer() 727 Range opSlice() in TotalContainer() 738 Range opSlice(size_t a, size_t b) in TotalContainer() 818 Range equalRange(KeyType k) in TotalContainer() 828 Range lowerBound(KeyType k) in TotalContainer() 838 Range upperBound(KeyType k) in TotalContainer() 1082 size_t insertBefore(Stuff)(Range r, Stuff stuff) in TotalContainer() 1087 size_t stableInsertBefore(Stuff)(Range r, Stuff stuff) in TotalContainer() 1092 size_t insertAfter(Stuff)(Range r, Stuff stuff) in TotalContainer() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/ |
| H A D | package.d | 578 struct Range in TotalContainer() struct 581 Range primitives. in TotalContainer() 722 Range opSlice() in TotalContainer() 733 Range opSlice(size_t a, size_t b) in TotalContainer() 813 Range equalRange(KeyType k) in TotalContainer() 823 Range lowerBound(KeyType k) in TotalContainer() 833 Range upperBound(KeyType k) in TotalContainer() 1077 size_t insertBefore(Stuff)(Range r, Stuff stuff) in TotalContainer() 1082 size_t stableInsertBefore(Stuff)(Range r, Stuff stuff) in TotalContainer() 1087 size_t insertAfter(Stuff)(Range r, Stuff stuff) in TotalContainer() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/ |
| H A D | Range.cpp | 20 void AddressRanges::insert(AddressRange Range) { in insert() argument 21 if (Range.size() == 0) in insert() 24 auto It = llvm::upper_bound(Ranges, Range); in insert() 26 while (It2 != Ranges.end() && It2->Start < Range.End) in insert() 29 Range.End = std::max(Range.End, It2[-1].End); in insert() 32 if (It != Ranges.begin() && Range.Start < It[-1].End) in insert() 33 It[-1].End = std::max(It[-1].End, Range.End); in insert() 35 Ranges.insert(It, Range); in insert() 45 bool AddressRanges::contains(AddressRange Range) const { in contains() 46 if (Range.size() == 0) in contains() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | PreprocessingRecord.cpp | 45 const FileEntry *File, SourceRange Range) in InclusionDirective() argument 46 : PreprocessingDirective(InclusionDirectiveKind, Range), InQuotes(InQuotes), in InclusionDirective() 59 PreprocessingRecord::getPreprocessedEntitiesInRange(SourceRange Range) { in getPreprocessedEntitiesInRange() argument 60 if (Range.isInvalid()) in getPreprocessedEntitiesInRange() 63 if (CachedRangeQuery.Range == Range) { in getPreprocessedEntitiesInRange() 68 std::pair<int, int> Res = getPreprocessedEntitiesInRangeSlow(Range); in getPreprocessedEntitiesInRange() 70 CachedRangeQuery.Range = Range; in getPreprocessedEntitiesInRange() 137 PreprocessingRecord::getPreprocessedEntitiesInRangeSlow(SourceRange Range) { in getPreprocessedEntitiesInRangeSlow() argument 138 assert(Range.isValid()); in getPreprocessedEntitiesInRangeSlow() 139 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin())); in getPreprocessedEntitiesInRangeSlow() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Parser.cpp | 61 SourceRange Range; member 112 Result.Range.Start = currentLocation(); in getNextToken() 209 Result.Range.End = currentLocation(); in getNextToken() 259 SourceRange Range; in consumeNumberLiteral() local 260 Range.Start = Result->Range.Start; in consumeNumberLiteral() 261 Range.End = currentLocation(); in consumeNumberLiteral() 262 Error->addError(Range, Error->ET_ParserNumberError) << Result->Text; in consumeNumberLiteral() 293 SourceRange Range; in consumeStringLiteral() local 294 Range.Start = Result->Range.Start; in consumeStringLiteral() 295 Range.End = currentLocation(); in consumeStringLiteral() [all …]
|
| /netbsd-src/sys/lib/libunwind/ |
| H A D | AddressSpace.hpp | 61 rangeCmp, rangeCmpKey, offsetof(Range, range_link), NULL in LocalAddressSpace() 64 dsoTableCmp, dsoTableCmpKey, offsetof(Range, dso_link), NULL in LocalAddressSpace() 245 Range *n; in findFDE() 248 n = (Range *)rb_tree_find_node(&segmentTree, &pc); in findFDE() 286 Range *n = (Range *)malloc(sizeof(*n)); in addFDE() 295 if (static_cast<Range *>(rb_tree_insert_node(&segmentTree, n)) == n) { in addFDE() 306 Range *n = static_cast<Range *>(rb_tree_find_node(&segmentTree, &pcStart)); in removeFDE() 326 Range *n; in removeDSO() 327 n = (Range *)rb_tree_find_node(&dsoTree, &ehFrameBase); in removeDSO() 359 struct Range { struct in _Unwind::LocalAddressSpace [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/ |
| H A D | MILexer.cpp | 64 MIToken &MIToken::reset(TokenKind Kind, StringRef Range) { in reset() argument 66 this->Range = Range; in reset() 172 auto Range = C; in lexName() local 176 StringRef String = Range.upto(R); in lexName() 182 Token.reset(MIToken::Error, Range.remaining()); in lexName() 183 return Range; in lexName() 187 Token.reset(Type, Range.upto(C)) in lexName() 188 .setStringValue(Range.upto(C).drop_front(PrefixLength)); in lexName() 281 auto Range = C; in maybeLexIdentifier() local 284 auto Identifier = Range.upto(C); in maybeLexIdentifier() [all …]
|
| /netbsd-src/sys/external/bsd/acpica/dist/tests/misc/ |
| H A D | badcode.asl | 231 0x07D0, // Range Minimum 232 0x03E8, // Range Maximum 239 0x00001000, // Range Minimum 240 0x00002000, // Range Maximum 247 0x00001001, // Range Minimum 248 0x00002002, // Range Maximum 270 0xA000, // Range Minimum 271 0xBFFF, // Range Maximum 279 0x0200, // Range Minimum 280 0x0100, // Range Maximum [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | STLExtras.h | 486 make_filter_range(RangeT &&Range, PredicateT Pred) { 490 FilterIteratorT(std::begin(std::forward<RangeT>(Range)), 491 std::end(std::forward<RangeT>(Range)), Pred), 492 FilterIteratorT(std::end(std::forward<RangeT>(Range)), 493 std::end(std::forward<RangeT>(Range)), Pred)); 572 make_early_inc_range(RangeT &&Range) { 575 return make_range(EarlyIncIteratorT(std::begin(std::forward<RangeT>(Range))), 576 EarlyIncIteratorT(std::end(std::forward<RangeT>(Range)))); 1463 auto size(R &&Range, 1467 Range.begin())>::iterator_category>::value, [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/ |
| H A D | Annotations.h | 50 struct Range { struct 54 friend bool operator==(const Range &L, const Range &R) { argument 57 friend bool operator!=(const Range &L, const Range &R) { return !(L == R); } 76 Range range(llvm::StringRef Name = "") const; 79 std::vector<Range> ranges(llvm::StringRef Name = "") const; 84 llvm::StringMap<llvm::SmallVector<Range, 1>> Ranges; 88 const llvm::Annotations::Range &R);
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| H A D | PreprocessingRecord.h | 91 SourceRange Range; variable 96 PreprocessedEntity(EntityKind Kind, SourceRange Range) in PreprocessedEntity() argument 97 : Kind(Kind), Range(Range) {} in PreprocessedEntity() 105 SourceRange getSourceRange() const LLVM_READONLY { return Range; } in getSourceRange() 137 PreprocessingDirective(EntityKind Kind, SourceRange Range) in PreprocessingDirective() argument 138 : PreprocessedEntity(Kind, Range) {} in PreprocessingDirective() 154 SourceRange Range) in MacroDefinitionRecord() argument 155 : PreprocessingDirective(MacroDefinitionKind, Range), Name(Name) {} in MacroDefinitionRecord() 176 MacroExpansion(IdentifierInfo *BuiltinName, SourceRange Range) in MacroExpansion() argument 177 : PreprocessedEntity(MacroExpansionKind, Range), in MacroExpansion() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/ |
| H A D | searching.d | 125 bool all(Range)(Range range) 126 if (isInputRange!Range && is(typeof(unaryFun!pred(range.front)))) 172 bool any(Range)(Range range) 173 if (isInputRange!Range && is(typeof(unaryFun!pred(range.front)))) 231 bool balancedParens(Range, E)(Range r, E lPar, E rPar, 233 if (isInputRange!(Range) && is(typeof(r.front == lPar))) 280 struct BoyerMooreFinder(alias pred, Range) in BoyerMooreFinder() argument 284 ptrdiff_t[ElementType!(Range)] occ; // GC allocated in BoyerMooreFinder() 285 Range needle; in BoyerMooreFinder() 287 ptrdiff_t occurrence(ElementType!(Range) c) in BoyerMooreFinder() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | SafeStackLayout.cpp | 32 << "), range " << Regions[i].Range << "\n"; in print() 41 const StackLifetime::LiveRange &Range) { in addObject() argument 42 StackObjects.push_back({V, Size, Alignment, Range}); in addObject() 59 Regions.emplace_back(Start, End, Obj.Range); in layoutObject() 65 << Obj.Alignment << ", range " << Obj.Range << "\n"); in layoutObject() 72 << ", range " << R.Range << "\n"); in layoutObject() 78 if (Obj.Range.overlaps(R.Range)) { in layoutObject() 102 << End << ", range " << Obj.Range << "\n"); in layoutObject() 103 Regions.emplace_back(LastRegionEnd, End, Obj.Range); in layoutObject() 127 R.Range.join(Obj.Range); in layoutObject()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | string.d | 483 ptrdiff_t indexOf(Range)(Range s, dchar c, CaseSensitive cs = Yes.caseSensitive) 484 if (isInputRange!Range && isSomeChar!(ElementType!Range) && !isSomeString!Range) 497 ptrdiff_t indexOf(Range)(Range s, dchar c, size_t startIdx, CaseSensitive cs = Yes.caseSensitive) 498 if (isInputRange!Range && isSomeChar!(ElementType!Range) && !isSomeString!Range) 657 private ptrdiff_t _indexOf(Range)(Range s, dchar c, CaseSensitive cs = Yes.caseSensitive) 658 if (isInputRange!Range && isSomeChar!(ElementType!Range)) 663 alias Char = Unqual!(ElementEncodingType!Range); 667 static if (Char.sizeof == 1 && isSomeString!Range) 671 static ptrdiff_t trustedmemchr(Range s, char c) @trusted in trustedmemchr() 782 private ptrdiff_t _indexOf(Range)(Range s, dchar c, size_t startIdx, CaseSensitive cs = Yes.caseSen… [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/ |
| H A D | mutation.d | 596 void fill(Range, Value)(auto ref Range range, auto ref Value value) 597 if ((isInputRange!Range && is(typeof(range.front = value)) || 600 alias T = ElementType!Range; 882 void initializeAll(Range)(Range range) 883 if (isInputRange!Range && hasLvalueElements!Range && hasAssignableElements!Range 884 && __traits(compiles, { static ElementType!Range _; })) 889 alias T = ElementType!Range; 903 static if (isDynamicArray!Range) 914 void initializeAll(Range)(Range range) 915 if (is(Range == char[]) || is(Range == wchar[])) [all …]
|
| H A D | searching.d | 121 bool all(Range)(Range range) 122 if (isInputRange!Range) 174 bool any(Range)(Range range) 175 if (isInputRange!Range && is(typeof(unaryFun!pred(range.front)))) 234 bool balancedParens(Range, E)(Range r, E lPar, E rPar, 236 if (isInputRange!(Range) && is(typeof(r.front == lPar))) 240 static if (is(immutable ElementEncodingType!Range == immutable E) && isNarrowString!Range) 296 struct BoyerMooreFinder(alias pred, Range) in BoyerMooreFinder() argument 300 ptrdiff_t[ElementType!(Range)] occ; // GC allocated in BoyerMooreFinder() 301 Range needle; in BoyerMooreFinder() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Core/ |
| H A D | Replacement.h | 44 class Range { 46 Range() = default; 47 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {} in Range() function 58 bool overlapsWith(Range RHS) const { in overlapsWith() 63 bool contains(Range RHS) const { in contains() 69 bool operator==(const Range &RHS) const { 103 Replacement(const SourceManager &Sources, const CharSourceRange &Range, 136 const CharSourceRange &Range, 141 Range ReplacementRange; 265 std::vector<Range> getAffectedRanges() const; [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | StdLibraryFunctionsChecker.cpp | 1179 } Range; in initFunctionSummaries() local 1239 .Case({ArgumentCondition(0U, WithinRange, Range(0, 127)), in initFunctionSummaries() 1241 .Case({ArgumentCondition(0U, OutOfRange, Range(0, 127)), in initFunctionSummaries() 1260 .Case({ArgumentCondition(0U, WithinRange, Range('0', '9')), in initFunctionSummaries() 1262 .Case({ArgumentCondition(0U, OutOfRange, Range('0', '9')), in initFunctionSummaries() 1267 .Case({ArgumentCondition(0U, WithinRange, Range(33, 126)), in initFunctionSummaries() 1269 .Case({ArgumentCondition(0U, OutOfRange, Range(33, 126)), in initFunctionSummaries() 1275 .Case({ArgumentCondition(0U, WithinRange, Range('a', 'z')), in initFunctionSummaries() 1278 .Case({ArgumentCondition(0U, WithinRange, Range(0, 127)), in initFunctionSummaries() 1279 ArgumentCondition(0U, OutOfRange, Range('a', 'z')), in initFunctionSummaries() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
| H A D | MPIBugReporter.cpp | 37 SourceRange Range = RequestRegion->sourceRange(); in reportDoubleNonblocking() local 39 if (Range.isValid()) in reportDoubleNonblocking() 40 Report->addRange(Range); in reportDoubleNonblocking() 59 SourceRange Range = RequestRegion->sourceRange(); in reportMissingWait() local 60 if (Range.isValid()) in reportMissingWait() 61 Report->addRange(Range); in reportMissingWait() 80 SourceRange Range = RequestRegion->sourceRange(); in reportUnmatchedWait() local 81 if (Range.isValid()) in reportUnmatchedWait() 82 Report->addRange(Range); in reportUnmatchedWait()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | base64.d | 573 pure char[] encode(Range)(Range source) if (isArray!Range && is(ElementType!Range : ubyte)) 589 char[] encode(Range)(Range source) if (!isArray!Range && isInputRange!Range && 590 is(ElementType!Range : ubyte) && hasLength!Range) 607 struct Encoder(Range) if (isInputRange!Range && (is(ElementType!Range : const(ubyte)[]) || 608 is(ElementType!Range : const(char)[]))) 611 Range range_; 616 this(Range range) in this() 668 static if (isForwardRange!Range) 717 struct Encoder(Range) if (isInputRange!Range && is(ElementType!Range : ubyte)) 720 Range range_; [all …]
|