Searched defs:Seq (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/test/PCH/
H A Dmake-integer-seq.cpp5 struct Seq { struct
10 using MakeSeq = __make_integer_seq<Seq, T, N>;
/external/clang/test/SemaCXX/
H A Dmake_integer_seq.cpp6 struct Seq { struct
11 using MakeSeq = __make_integer_seq<Seq, T, N>;
13 static_assert(__is_same(MakeSeq<int, 0>, Seq<int>), "");
14 static_assert(__is_same(MakeSeq<int, 1>, Seq<int, 0>), "");
15 static_assert(__is_same(MakeSeq<int, 2>, Seq<int, 0, 1>), "");
16 static_assert(__is_same(MakeSeq<int, 3>, Seq<int, 0, 1, 2>), "");
17 static_assert(__is_same(MakeSeq<int, 4>, Seq<int, 0, 1, 2, 3>), "");
19 static_assert(__is_same(MakeSeq<unsigned int, 0U>, Seq<unsigned int>), "");
20 static_assert(__is_same(MakeSeq<unsigned int, 1U>, Seq<unsigned int, 0U>), "");
21 static_assert(__is_same(MakeSeq<unsigned int, 2U>, Seq<unsigne
[all...]
/external/llvm/utils/lit/lit/
H A DShCommands.py65 class Seq: class in inherits:
73 return 'Seq(%r, %r, %r)' % (self.lhs, self.op, self.rhs)
76 if not isinstance(other, Seq):
H A DShUtil.py5 from lit.ShCommands import Command, Pipeline, Seq namespace
244 lhs = Seq(lhs, operator[0], self.parse_pipeline())
323 Seq(Pipeline([Command(['a'], [])], False),
328 Seq(Pipeline([Command(['a'], [])], False),
333 Seq(Pipeline([Command(['a'], [])], False),
338 Seq(Pipeline([Command(['a'], [])], False),
343 Seq(Seq(Pipeline([Command(['a'], [])], False),
350 Seq(Pipeline([Command(['a'], [])], False),
/external/swiftshader/third_party/LLVM/utils/lit/lit/
H A DShCommands.py65 class Seq: class in inherits:
73 return 'Seq(%r, %r, %r)' % (self.lhs, self.op, self.rhs)
76 if not isinstance(other, Seq):
H A DShUtil.py4 from ShCommands import Command, Pipeline, Seq namespace
243 lhs = Seq(lhs, operator[0], self.parse_pipeline())
326 Seq(Pipeline([Command(['a'], [])], False),
331 Seq(Pipeline([Command(['a'], [])], False),
336 Seq(Pipeline([Command(['a'], [])], False),
341 Seq(Pipeline([Command(['a'], [])], False),
346 Seq(Seq(Pipeline([Command(['a'], [])], False),
/external/swiftshader/third_party/subzero/src/
H A DIceThreading.cpp22 EmitterWorkItem::EmitterWorkItem(uint32_t Seq) argument
23 : Sequence(Seq), Kind(WI_Nop), GlobalInits(nullptr), Function(nullptr),
25 EmitterWorkItem::EmitterWorkItem(uint32_t Seq, argument
27 : Sequence(Seq), Kind(WI_GlobalInits), GlobalInits(std::move(D)),
29 EmitterWorkItem::EmitterWorkItem(uint32_t Seq, std::unique_ptr<Assembler> A) argument
30 : Sequence(Seq), Kind(WI_Asm), GlobalInits(nullptr), Function(std::move(A)),
32 EmitterWorkItem::EmitterWorkItem(uint32_t Seq, std::unique_ptr<Cfg> F) argument
33 : Sequence(Seq), Kind(WI_Cfg), GlobalInits(nullptr), Function(nullptr),
/external/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.cpp86 void MipsAnalyzeImmediate::ReplaceADDiuSLLWithLUi(InstSeq &Seq) { argument
89 if ((Seq.size() < 2) || (Seq[0].Opc != ADDiu) ||
90 (Seq[1].Opc != SLL) || (Seq[1].ImmOpnd < 16))
94 int64_t Imm = SignExtend64<16>(Seq[0].ImmOpnd);
95 int64_t ShiftedImm = (uint64_t)Imm << (Seq[1].ImmOpnd - 16);
101 Seq[0].Opc = LUi;
102 Seq[0].ImmOpnd = (unsigned)(ShiftedImm & 0xffff);
103 Seq
[all...]
H A DMipsSEInstrInfo.cpp480 const MipsAnalyzeImmediate::InstSeq &Seq = local
482 MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
484 assert(Seq.size() && (!LastInstrIsADDiu || (Seq.size() > 1)));
497 // Build the remaining instructions in Seq.
498 for (++Inst; Inst != Seq.end() - LastInstrIsADDiu; ++Inst)
H A DMipsSEISelDAGToDAG.cpp782 const MipsAnalyzeImmediate::InstSeq &Seq = local
785 MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
803 for (++Inst; Inst != Seq.end(); ++Inst) {
/external/llvm/utils/TableGen/
H A DSequenceToOffsetTable.h68 void add(const SeqT &Seq) { argument
70 typename SeqMap::iterator I = Seqs.lower_bound(Seq);
72 // If SeqMap contains a sequence that has Seq as a suffix, I will be
74 if (I != Seqs.end() && isSuffix(Seq, I->first))
77 I = Seqs.insert(I, std::make_pair(Seq, 0u));
79 // The entry before I may be a suffix of Seq that can now be erased.
80 if (I != Seqs.begin() && isSuffix((--I)->first, Seq))
103 /// get - Returns the offset of Seq in the final table.
104 unsigned get(const SeqT &Seq) const {
106 typename SeqMap::const_iterator I = Seqs.lower_bound(Seq);
[all...]
H A DCodeGenSchedule.cpp186 RecVec Seq = RWDef->getValueAsListOfDefs("Writes"); local
187 for (RecIter I = Seq.begin(), E = Seq.end(); I != E; ++I)
329 std::string CodeGenSchedModels::genRWName(ArrayRef<unsigned> Seq, bool IsRead) { argument
331 for (auto I = Seq.begin(), E = Seq.end(); I != E; ++I) {
332 if (I != Seq.begin())
460 unsigned CodeGenSchedModels::findRWForSequence(ArrayRef<unsigned> Seq,
466 if (makeArrayRef(I->Sequence) == Seq)
474 unsigned CodeGenSchedModels::findOrInsertRW(ArrayRef<unsigned> Seq,
[all...]
H A DCodeGenSchedule.h75 CodeGenSchedRW(unsigned Idx, bool Read, ArrayRef<unsigned> Seq, argument
78 HasVariants(false), IsVariadic(false), IsSequence(true), Sequence(Seq) {
380 unsigned findOrInsertRW(ArrayRef<unsigned> Seq, bool IsRead);
396 std::string genRWName(ArrayRef<unsigned> Seq, bool IsRead);
397 unsigned findRWForSequence(ArrayRef<unsigned> Seq, bool IsRead);
/external/skia/experimental/svg/model/
H A DSkPEG.h87 template <typename... E> struct Seq;
90 struct Seq<> { struct in namespace:skpeg
100 struct Seq<E, Es...> { struct in namespace:skpeg
103 V(const typename E::V& head, const typename Seq<Es...>::V& tail)
118 typename Seq<Es...>::V fTailV;
128 const auto tailMatch = Seq<Es...>::Match(headMatch.fNext);
198 using Some = Seq<E, Any<E>>;
/external/python/cpython2/Lib/test/
H A Dtest_enumerate.py178 class Seq: class in function:TestReversed.test_gc
183 s = Seq()
H A Dtest_iter.py355 class Seq: class in function:TestCase.test_builtin_filter
374 seq = Seq(*([bTrue, bFalse] * 25))
/external/libmojo/mojo/edk/system/
H A Ddata_pipe_unittest.cc785 void Seq(int32_t start, size_t count, int32_t* out) { function in namespace:mojo::edk::__anon10997
803 Seq(0, arraysize(buffer), buffer);
813 Seq(100, arraysize(buffer), buffer);
838 Seq(200, arraysize(buffer), buffer);
856 Seq(300, arraysize(buffer), buffer);
862 Seq(400, arraysize(buffer), buffer);
884 Seq(100, 5, expected_buffer);
939 Seq(400, 2, expected_buffer);
/external/v8/src/
H A Deffects.h47 static Effect Seq(Effect e1, Effect e2, Zone* zone) { function in struct:v8::internal::Effect
94 void Seq(Var var, Effect effect) { function in class:v8::internal::EffectsMixin
97 effect = Effect::Seq(locator.value(), effect, Base::zone());
102 void Seq(Effects that) { function in class:v8::internal::EffectsMixin
128 Seq(override.effects);
136 void Call(Var var, Effect effect) { self.Seq(var, effect); }
161 void Call(Var var, Effect effect) { effects.Seq(var, new_effect); }
/external/pdfium/third_party/lcms2-2.6/src/
H A Dcmsnamed.c728 cmsSEQ* Seq; local
737 Seq = (cmsSEQ*) _cmsMallocZero(ContextID, sizeof(cmsSEQ));
738 if (Seq == NULL) return NULL;
740 Seq -> ContextID = ContextID;
741 Seq -> seq = (cmsPSEQDESC*) _cmsCalloc(ContextID, n, sizeof(cmsPSEQDESC));
742 Seq -> n = n;
744 if (Seq -> seq == NULL) {
745 _cmsFree(ContextID, Seq);
750 Seq -> seq[i].Manufacturer = NULL;
751 Seq
[all...]
H A Dcmsvirt.c67 cmsSEQ* Seq = cmsAllocProfileSequenceDescription(ContextID, 1); local
69 if (Seq == NULL) return FALSE;
71 Seq->seq[0].deviceMfg = (cmsSignature) 0;
72 Seq->seq[0].deviceModel = (cmsSignature) 0;
75 Seq->seq[0].attributes[0] = 0;
76 Seq->seq[0].attributes[1] = 0;
78 Seq->seq[0].attributes = 0;
81 Seq->seq[0].technology = (cmsTechnologySignature) 0;
83 cmsMLUsetASCII( Seq->seq[0].Manufacturer, cmsNoLanguage, cmsNoCountry, "Little CMS");
84 cmsMLUsetASCII( Seq
[all...]
/external/clang/lib/Format/
H A DFormat.cpp390 static size_t size(IO &IO, std::vector<FormatStyle> &Seq) { argument
391 return Seq.size();
393 static FormatStyle &element(IO &IO, std::vector<FormatStyle> &Seq, argument
395 if (Index >= Seq.size()) {
396 assert(Index == Seq.size());
398 if (Seq.size() > 0 && Seq[0].Language == FormatStyle::LK_None) {
399 Template = Seq[0];
404 Seq.resize(Index + 1, Template);
406 return Seq[Inde
[all...]
/external/llvm/include/llvm/Support/
H A DYAMLTraits.h742 yamlize(IO &io, T &Seq, bool) { argument
745 unsigned count = io.outputting() ? SequenceTraits<T>::size(io, Seq) : incnt;
749 yamlize(io, SequenceTraits<T>::element(io, Seq, i), true);
757 unsigned count = io.outputting() ? SequenceTraits<T>::size(io, Seq) : incnt;
761 yamlize(io, SequenceTraits<T>::element(io, Seq, i), true);
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp437 << " Seq: "
457 << " Seq: "
1017 const Sequence Seq = I->second.GetSeq(); local
1020 if (Seq == S_None)
1025 assert((Seq == S_Retain || Seq == S_CanRelease || Seq == S_Use) &&
1059 // *NOTE* We do not use Seq from above here since we are allowing for
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp2126 OptionalTestSeq Seq; local
2130 Seq.Tests.push_back(One);
2131 Seq.Tests.push_back(Two);
2132 Seq.Tests.push_back(Three);
2133 Seq.Tests.push_back(Four);
2139 yout << Seq; local
2229 std::vector<FlowSeq> Seq; local
2230 Seq.emplace_back("This is str1");
2231 Seq.emplace_back("This is str2");
2232 Seq
2249 yout << Seq; local
2272 yout << Seq; local
2293 yout << Seq; local
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DYAMLTraits.h829 yamlize(IO &io, T &Seq, bool, Context &Ctx) { argument
832 unsigned count = io.outputting() ? SequenceTraits<T>::size(io, Seq) : incnt;
836 yamlize(io, SequenceTraits<T>::element(io, Seq, i), true, Ctx);
844 unsigned count = io.outputting() ? SequenceTraits<T>::size(io, Seq) : incnt;
848 yamlize(io, SequenceTraits<T>::element(io, Seq, i), true, Ctx);

Completed in 1695 milliseconds

12