| /llvm-project-15.0.7/llvm/test/MC/Mips/ |
| H A D | macro-seq.s | 5 seq $2, $11, $0 label 7 seq $2, $0, $11 label 9 seq $2, $0, $0 label 11 seq $2, $11, $12 label 14 seq $2, $11, 45 label 21 seq $2, $3 label 24 seq $2, 0x8888 label 27 seq $2, $3, -1546 label 31 seq $2, -7546 label 48 seq $4, $5, 0 label [all …]
|
| /llvm-project-15.0.7/pstl/test/std/algorithms/alg.sorting/alg.min.max/ |
| H A D | minmax_element.pass.cpp | 72 TestUtils::Sequence<T> seq; member 91 if (seq.size() == 0) in set_desired_value() 93 seq[at] = value; in set_desired_value() 97 seq[i] = value; in set_desired_value() 122 TestUtils::invoke_on_all_policies(check_minelement(), wseq.seq.cbegin(), wseq.seq.cend()); in test_by_type() 123 TestUtils::invoke_on_all_policies(check_minelement(), wseq.seq.begin(), wseq.seq.end()); in test_by_type() 126 TestUtils::invoke_on_all_policies(check_maxelement(), wseq.seq.cbegin(), wseq.seq.cend()); in test_by_type() 127 TestUtils::invoke_on_all_policies(check_maxelement(), wseq.seq.begin(), wseq.seq.end()); in test_by_type() 139 … TestUtils::invoke_on_all_policies(check_minmaxelement(), wseq.seq.begin(), wseq.seq.end()); in test_by_type() 144 … TestUtils::invoke_on_all_policies(check_minmaxelement(), wseq.seq.cbegin(), wseq.seq.cend()); in test_by_type() [all …]
|
| /llvm-project-15.0.7/mlir/utils/tree-sitter-mlir/ |
| H A D | grammar.js | 10 toplevel : $ => seq(choice( 32 _hexadecimal_literal : $ => seq('0x', repeat1($._hex_digit)), 34 seq(optional(/[-+]/), repeat1(/[0_9]/), 35 optional(seq('.', repeat(/[0-9]/), 36 optional(seq(/[eE]/, optional(/[-+]/), 38 string_literal : $ => seq( 257 seq('func', field('name', $.symbol_ref_id),
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | YAMLIOTest.cpp | 114 yin >> seq; in TEST() 222 yout << seq; in TEST() 1486 yin >> seq; in TEST() 1608 yin >> seq; in TEST() 1996 yin >> seq; in TEST() 2014 yin >> seq; in TEST() 2032 yin >> seq; in TEST() 2050 yin >> seq; in TEST() 2069 yin >> seq; in TEST() 2087 yin >> seq; in TEST() [all …]
|
| /llvm-project-15.0.7/mlir/test/Dialect/OpenACC/ |
| H A D | invalid.mlir | 3 // expected-error@+1 {{gang, worker or vector cannot appear with the seq attr}} 7 } attributes {seq} 11 // expected-error@+1 {{gang, worker or vector cannot appear with the seq attr}} 15 } attributes {seq} 19 // expected-error@+1 {{gang, worker or vector cannot appear with the seq attr}} 23 } attributes {seq} 31 } attributes {seq} 39 } attributes {seq} 47 } attributes {seq} 55 } attributes {seq} [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_deadlock_detector2.cpp | 33 u32 seq; member 35 explicit Id(u32 id = 0, u32 seq = 0) in Id() 37 , seq(seq) { in Id() 43 u32 seq; member 50 , seq(seq) in Link() 78 u32 seq; member 231 if (link->seq != mtx->seq) { in MutexBeforeLock() 232 link->seq = mtx->seq; in MutexBeforeLock() 247 link->seq = mtx->seq; in MutexBeforeLock() 345 mtx->seq++; in MutexDestroy() [all …]
|
| H A D | sanitizer_mutex.cpp | 142 u64 seq; member 159 if (locked[i].seq == 0) in Lock() 161 CHECK_NE(locked[i].seq, max_seq); in Lock() 162 if (max_seq < locked[i].seq) { in Lock() 163 max_seq = locked[i].seq; in Lock() 169 CHECK_EQ(locked[type].seq, max_seq); in Lock() 180 locked[type].seq = ++sequence; in Lock() 189 CHECK(locked[type].seq); in Unlock() 193 locked[type].seq = 0; in Unlock()
|
| /llvm-project-15.0.7/clang-tools-extra/pseudo/lib/grammar/ |
| H A D | Grammar.cpp | 65 for (size_t I = 0; I < R.seq().size(); ++I) in mangleRule() 66 MangleName += llvm::formatv("_{0}{1}", I, mangleSymbol(R.seq()[I])); in mangleRule() 142 Changed |= ExpandFirstSet(R.Target, R.seq().front()); in firstSets() 174 for (size_t I = 0; I + 1 < R.seq().size(); ++I) { in followSets() 175 if (isToken(R.seq()[I])) in followSets() 179 SymbolID Next = R.seq()[I + 1]; in followSets() 182 Changed |= ExpandFollowSet(R.seq()[I], {Next}); in followSets() 184 Changed |= ExpandFollowSet(R.seq()[I], FirstSets[Next]); in followSets() 188 SymbolID Z = R.seq().back(); in followSets()
|
| /llvm-project-15.0.7/clang-tools-extra/pseudo/lib/cxx/ |
| H A D | cxx.bnf | 33 _ := statement-seq 34 _ := declaration-seq 133 requirement-seq := requirement 134 requirement-seq := requirement-seq requirement 291 statement-seq := statement 292 statement-seq := statement-seq statement 312 declaration-seq := declaration 313 declaration-seq := declaration-seq declaration 353 decl-specifier-seq := decl-specifier decl-specifier-seq [guard] 367 type-specifier-seq := type-specifier type-specifier-seq [guard] [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_mutexset.cpp | 29 descs_[i].seq = seq_++; in AddAddr() 37 if (descs_[i].seq < descs_[min].seq) in AddAddr() 47 descs_[size_].seq = seq_++; in AddAddr()
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/ |
| H A D | tsan_mutexset.cpp | 50 descs_[size_].seq = seq_++; in Add() 79 descs_[i].seq = seq_++; in AddAddr() 87 if (descs_[i].seq < descs_[min].seq) in AddAddr() 99 descs_[size_].seq = seq_++; in AddAddr()
|
| /llvm-project-15.0.7/libcxxabi/test/ |
| H A D | thread_local_destruction_order.pass.cpp | 17 int seq = 0; variable 24 assert(seq++ == n_); in ~OrderChecker() 52 assert(seq == 3); in main()
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | LineTable.cpp | 30 LineSequenceImpl *seq = static_cast<LineSequenceImpl *>(sequence.get()); in LineTable() local 31 m_entries.insert(m_entries.end(), seq->m_entries.begin(), in LineTable() 32 seq->m_entries.end()); in LineTable() 75 LineSequenceImpl *seq = reinterpret_cast<LineSequenceImpl *>(sequence); in AppendLineEntryToSequence() local 79 entry_collection &entries = seq->m_entries; in AppendLineEntryToSequence() 107 LineSequenceImpl *seq = reinterpret_cast<LineSequenceImpl *>(sequence); in InsertSequence() local 108 if (seq->m_entries.empty()) in InsertSequence() 110 Entry &entry = seq->m_entries.front(); in InsertSequence() 116 m_entries.insert(m_entries.end(), seq->m_entries.begin(), in InsertSequence() 117 seq->m_entries.end()); in InsertSequence() [all …]
|
| /llvm-project-15.0.7/lldb/tools/intel-features/intel-mpx/test/ |
| H A D | TestMPXTable.py | 35 seq = ("plugin", "load", plugin_file) 36 plugin_command = plugin_command.join(seq) 125 seq = ("plugin", "load", plugin_file) 126 plugin_command = plugin_command.join(seq)
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/cnmips/ |
| H A D | valid.s | 42 # CHECK: seq $25, $23, $24 # encoding: [0x72,0xf8,0xc8,0x2a] 43 # CHECK: seq $6, $6, $24 # encoding: [0x70,0xd8,0x30,0x2a] 101 seq $25, $23, $24 102 seq $6, $24
|
| /llvm-project-15.0.7/llvm/test/MC/M68k/Control/Classes/ |
| H A D | MxScc.s | 24 ; CHECK: seq %d7 26 seq %d7 label 73 ; CHECK: seq (0,%a0) 75 seq (0,%a0) label
|
| /llvm-project-15.0.7/openmp/runtime/src/ |
| H A D | kmp_lock.h | 1107 #define KMP_IS_D_LOCK(seq) \ argument 1108 ((seq) >= KMP_FIRST_D_LOCK && (seq) <= KMP_LAST_D_LOCK) 1109 #define KMP_IS_I_LOCK(seq) \ argument 1110 ((seq) >= KMP_FIRST_I_LOCK && (seq) <= KMP_LAST_I_LOCK) 1111 #define KMP_GET_I_TAG(seq) (kmp_indirect_locktag_t)((seq)-KMP_FIRST_I_LOCK) argument 1112 #define KMP_GET_D_TAG(seq) ((seq) << 1 | 1) argument 1161 #define KMP_INIT_D_LOCK(l, seq) \ argument 1162 __kmp_direct_init[KMP_GET_D_TAG(seq)]((kmp_dyna_lock_t *)l, seq) 1165 #define KMP_INIT_I_LOCK(l, seq) \ argument 1166 __kmp_direct_init[0]((kmp_dyna_lock_t *)(l), seq)
|
| /llvm-project-15.0.7/llvm/tools/dsymutil/ |
| H A D | DebugMap.cpp | 188 IO &io, std::vector<std::unique_ptr<dsymutil::DebugMapObject>> &seq) { in size() argument 189 return seq.size(); in size() 194 IO &, std::vector<std::unique_ptr<dsymutil::DebugMapObject>> &seq, in element() argument 196 if (index >= seq.size()) { in element() 197 seq.resize(index + 1); in element() 198 seq[index].reset(new dsymutil::DebugMapObject); in element() 200 return *seq[index]; in element()
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/cnmipsp/ |
| H A D | valid.s | 45 # CHECK: seq $25, $23, $24 # encoding: [0x72,0xf8,0xc8,0x2a] 46 # CHECK: seq $6, $6, $24 # encoding: [0x70,0xd8,0x30,0x2a] 106 seq $25, $23, $24 107 seq $6, $24
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | fold_expr_expansion_limit.cpp | 3 template <class T, T... V> struct seq { struct 8 auto x = __make_integer_seq<seq, int, N>{}; argument
|
| /llvm-project-15.0.7/mlir/lib/Dialect/MemRef/Transforms/ |
| H A D | NormalizeMemRefs.cpp | 170 llvm::seq<unsigned>(0, callOp.getNumResults())) { in areMemRefsNormalizable() 181 for (unsigned argIndex : llvm::seq<unsigned>(0, funcOp.getNumArguments())) { in areMemRefsNormalizable() 264 for (unsigned resIndex : llvm::seq<unsigned>(0, userOp->getNumResults())) { in updateFunctionSignature() 345 llvm::seq<unsigned>(0, functionType.getNumInputs())) { in normalizeFuncOpMemRefs() 407 for (unsigned resIndex : llvm::seq<unsigned>(0, op->getNumResults())) { in normalizeFuncOpMemRefs() 453 llvm::seq<unsigned>(0, functionType.getNumResults())) { in normalizeFuncOpMemRefs() 494 for (unsigned resIndex : llvm::seq<unsigned>(0, oldOp->getNumResults())) { in createOpResultsNormalized()
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | yaml2obj.rst | 89 - type: seq 110 type: seq 116 - type: seq 158 type: seq
|
| /llvm-project-15.0.7/llvm/test/YAMLParser/ |
| H A D | construct-seq.test | 4 Block style: !!seq 14 Flow style: !!seq [ Mercury, Venus, Earth, Mars, # Rocks
|
| /llvm-project-15.0.7/clang-tools-extra/pseudo/unittests/ |
| H A D | GrammarTest.cpp | 26 return testing::Property(&Rule::seq, ElementsAre(IDs...)); in Sequence() 72 EXPECT_THAT(G.symbolName(Rule.seq()[0]), "IDENTIFIER"); in TEST_F() 73 EXPECT_THAT(G.symbolName(Rule.seq()[1]), "+"); in TEST_F() 74 EXPECT_THAT(G.symbolName(Rule.seq()[2]), "_"); in TEST_F()
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | SequenceTest.cpp | 185 EXPECT_THAT(seq(-4, 5), ElementsAre(-4, -3, -2, -1, 0, 1, 2, 3, 4)); in TEST() 186 EXPECT_THAT(reverse(seq(-4, 5)), ElementsAre(4, 3, 2, 1, 0, -1, -2, -3, -4)); in TEST() 195 const auto Forward = seq(0, 10); in TEST() 201 const auto Forward = seq(0, 10).begin(); in TEST() 204 const auto Backward = seq(0, 10).rbegin(); in TEST()
|