Searched refs:Seq (Results 1 - 15 of 15) sorted by relevance

/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))
98 /// get - Returns the offset of Seq in the final table.
99 unsigned get(const SeqT &Seq) const {
101 typename SeqMap::const_iterator I = Seqs.lower_bound(Seq);
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.cpp85 void MipsAnalyzeImmediate::ReplaceADDiuSLLWithLUi(InstSeq &Seq) { argument
88 if ((Seq.size() < 2) || (Seq[0].Opc != ADDiu) ||
89 (Seq[1].Opc != SLL) || (Seq[1].ImmOpnd < 16))
93 int64_t Imm = SignExtend64<16>(Seq[0].ImmOpnd);
94 int64_t ShiftedImm = (uint64_t)Imm << (Seq[1].ImmOpnd - 16);
100 Seq[0].Opc = LUi;
101 Seq[0].ImmOpnd = (unsigned)(ShiftedImm & 0xffff);
102 Seq
[all...]
H A DMipsAnalyzeImmediate.h51 void ReplaceADDiuSLLWithLUi(InstSeq &Seq);
H A DMipsSEInstrInfo.cpp283 const MipsAnalyzeImmediate::InstSeq &Seq = local
285 MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
287 assert(Seq.size() && (!LastInstrIsADDiu || (Seq.size() > 1)));
299 // Build the remaining instructions in Seq.
300 for (++Inst; Inst != Seq.end() - LastInstrIsADDiu; ++Inst)
H A DMipsISelDAGToDAG.cpp512 const MipsAnalyzeImmediate::InstSeq &Seq = local
515 MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
533 for (++Inst; Inst != Seq.end(); ++Inst) {
/external/llvm/utils/lit/lit/
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),
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 DTestRunner.py46 if isinstance(cmd, ShUtil.Seq):
301 cmd = ShUtil.Seq(cmd, '&&', c)
/external/v8/tools/gcmole/
H A Dgcmole.cc677 return Seq(expr, 2, exprs, env);
728 return Seq(expr, expr->getNumInits(), expr->getInits(), env);
790 ExprEffect Seq(clang::Stmt* parent, function in class:__anon12944::FunctionAnalyzer
971 void Seq(clang::Stmt* a, clang::Stmt* b, clang::Stmt* c) { function in class:__anon12944::FunctionAnalyzer::Block
978 void Seq(clang::Stmt* a, clang::Stmt* b) { function in class:__anon12944::FunctionAnalyzer::Block
985 Seq(a, b, c);
990 Seq(a, b);
1060 block.Seq(stmt->getCond(), stmt->getBody());
/external/llvm/lib/Transforms/Scalar/
H A DObjCARC.cpp1396 /// Seq - The current position in the sequence.
1397 Sequence Seq : 8;
1405 Seq(S_None) {}
1420 Seq = NewSeq;
1424 return Seq;
1432 Seq = NewSeq;
1443 Seq = MergeSeqs(Seq, Other.Seq, TopDown);
1448 Seq
2685 Sequence Seq = S.GetSeq(); local
2888 Sequence Seq = S.GetSeq(); local
[all...]
/external/opencv/cvaux/src/
H A Dcvlee.cpp1040 Seq : in, pointer to the sequence
1045 T _cvSeqPush(CvSeq* Seq, T pElem);
1052 Seq : in, pointer to the sequence
1057 T _cvSeqPushFront(CvSeq* Seq, T pElem);
1450 CvSeq* Seq; local
1454 for(Seq = (CvSeq*)VoronoiDiagram->sites; Seq != NULL; Seq = Seq->h_next)
1455 if(Seq
4449 _cvSeqPush(CvSeq* Seq, T pElem) argument
4457 _cvSeqPushFront(CvSeq* Seq, T pElem) argument
[all...]
/external/clang/lib/Sema/
H A DSemaInit.cpp787 InitializationSequence Seq(SemaRef, Entity, Kind, &expr, 1);
789 if (Seq) {
792 Seq.Perform(SemaRef, Entity, Kind, MultiExprArg(&expr, 1));
6058 static void DiagnoseNarrowingInInitList(Sema &S, InitializationSequence &Seq, argument
6062 if (Seq.step_begin() == Seq.step_end() || PreInit->isValueDependent())
6067 const InitializationSequence::Step &LastStep = Seq.step_end()[-1];
6090 if (Seq.step_begin() + 1 != Seq.step_end())
6091 PreNarrowingType = Seq
[all...]
H A DSemaStmt.cpp2203 InitializationSequence Seq(*this, Entity, Kind, &InitExpr, 1);
2209 if (Seq) {
2210 for (InitializationSequence::step_iterator Step = Seq.step_begin(),
2211 StepEnd = Seq.step_end();
2236 Res = Seq.Perform(*this, Entity, Kind, MultiExprArg(&Value, 1));
H A DSemaExprObjC.cpp346 InitializationSequence Seq(S, Entity, Kind, &Element, 1);
347 if (!Seq.Failed())
348 return Seq.Perform(S, Entity, Kind, Element);
H A DSemaDeclCXX.cpp1716 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1717 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));

Completed in 297 milliseconds