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

12

/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 DMipsAnalyzeImmediate.h51 void ReplaceADDiuSLLWithLUi(InstSeq &Seq);
H A DMipsSEInstrInfo.cpp394 const MipsAnalyzeImmediate::InstSeq &Seq = local
396 MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
398 assert(Seq.size() && (!LastInstrIsADDiu || (Seq.size() > 1)));
411 // Build the remaining instructions in Seq.
412 for (++Inst; Inst != Seq.end() - LastInstrIsADDiu; ++Inst)
H A DMipsSEISelDAGToDAG.cpp758 const MipsAnalyzeImmediate::InstSeq &Seq = local
761 MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
779 for (++Inst; Inst != Seq.end(); ++Inst) {
/external/llvm/utils/TableGen/
H A DSequenceToOffsetTable.h69 void add(const SeqT &Seq) { argument
71 typename SeqMap::iterator I = Seqs.lower_bound(Seq);
73 // If SeqMap contains a sequence that has Seq as a suffix, I will be
75 if (I != Seqs.end() && isSuffix(Seq, I->first))
78 I = Seqs.insert(I, std::make_pair(Seq, 0u));
80 // The entry before I may be a suffix of Seq that can now be erased.
81 if (I != Seqs.begin() && isSuffix((--I)->first, Seq))
104 /// get - Returns the offset of Seq in the final table.
105 unsigned get(const SeqT &Seq) const {
107 typename SeqMap::const_iterator I = Seqs.lower_bound(Seq);
[all...]
H A DCodeGenSchedule.h75 CodeGenSchedRW(unsigned Idx, bool Read, const IdxVec &Seq, argument
78 HasVariants(false), IsVariadic(false), IsSequence(true), Sequence(Seq) {
369 unsigned findOrInsertRW(ArrayRef<unsigned> Seq, bool IsRead);
386 std::string genRWName(const IdxVec& Seq, bool IsRead);
387 unsigned findRWForSequence(const IdxVec &Seq, bool IsRead);
H A DCodeGenSchedule.cpp189 RecVec Seq = RWDef->getValueAsListOfDefs("Writes"); local
190 for (RecIter I = Seq.begin(), E = Seq.end(); I != E; ++I)
332 std::string CodeGenSchedModels::genRWName(const IdxVec& Seq, bool IsRead) { argument
334 for (IdxIter I = Seq.begin(), E = Seq.end(); I != E; ++I) {
335 if (I != Seq.begin())
463 unsigned CodeGenSchedModels::findRWForSequence(const IdxVec &Seq,
469 if (I->Sequence == Seq)
477 unsigned CodeGenSchedModels::findOrInsertRW(ArrayRef<unsigned> Seq,
[all...]
/external/llvm/utils/lit/lit/
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),
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.py37 if isinstance(cmd, ShUtil.Seq):
281 cmd = ShUtil.Seq(cmd, '&&', c)
/external/llvm/lib/Transforms/ObjCARC/
H A DPtrState.h110 unsigned char Seq : 8;
115 PtrState() : KnownPositiveRefCount(false), Partial(false), Seq(S_None) {}
149 Sequence GetSeq() const { return static_cast<Sequence>(Seq); }
H A DPtrState.cpp128 Seq = NewSeq;
139 Seq = MergeSeqs(GetSeq(), Other.GetSeq(), TopDown);
143 if (Seq == S_None) {
225 DEBUG(dbgs() << " CanAlterRefCount: Seq: " << S << "; " << *Ptr
252 DEBUG(dbgs() << " CanUse: Seq: " << GetSeq() << "; " << *Ptr
263 } else if (Seq == S_Release && IsUser(Class)) {
264 DEBUG(dbgs() << " PreciseReleaseUse: Seq: " << GetSeq() << "; "
278 DEBUG(dbgs() << " PreciseStopUse: Seq: " << GetSeq() << "; "
358 DEBUG(dbgs() << " CanAlterRefCount: Seq: " << GetSeq() << "; " << *Ptr
391 DEBUG(dbgs() << " CanUse: Seq
[all...]
H A DObjCARCOpts.cpp437 << " Seq: "
457 << " Seq: "
1011 const Sequence Seq = I->second.GetSeq(); local
1014 if (Seq == S_None)
1019 assert((Seq == S_Retain || Seq == S_CanRelease || Seq == S_Use) &&
1053 // *NOTE* We do not use Seq from above here since we are allowing for
/external/v8/src/
H A Deffects.h48 static Effect Seq(Effect e1, Effect e2, Zone* zone) { function in struct:v8::internal::Effect
96 void Seq(Var var, Effect effect) { function in class:v8::internal::EffectsMixin
99 effect = Effect::Seq(locator.value(), effect, Base::zone());
104 void Seq(Effects that) { function in class:v8::internal::EffectsMixin
130 Seq(override.effects);
138 void Call(Var var, Effect effect) { self.Seq(var, effect); }
163 void Call(Var var, Effect effect) { effects.Seq(var, new_effect); }
H A Dtyping.cc86 store_.Seq(parameter_index(-1), ObservedOnStack(frame->receiver()));
88 store_.Seq(parameter_index(i), ObservedOnStack(frame->GetParameter(i)));
92 store_.Seq(stack_local_index(i), ObservedOnStack(frame->GetExpression(i)));
169 store_.Seq(then_effects);
240 store_.Seq(local_effects);
332 store_.Seq(try_effects);
374 store_.Seq(then_effects);
462 store_.Seq(variable_index(proxy->var()), Effect(expr->bounds()));
601 store_.Seq(variable_index(proxy->var()), Effect(expr->bounds()));
640 store_.Seq(left_effect
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
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...]
H A Dcmsnamed.c720 cmsSEQ* Seq; local
729 Seq = (cmsSEQ*) _cmsMallocZero(ContextID, sizeof(cmsSEQ));
730 if (Seq == NULL) return NULL;
732 Seq -> ContextID = ContextID;
733 Seq -> seq = (cmsPSEQDESC*) _cmsCalloc(ContextID, n, sizeof(cmsPSEQDESC));
734 Seq -> n = n;
736 if (Seq -> seq == NULL) {
737 _cmsFree(ContextID, Seq);
742 Seq -> seq[i].Manufacturer = NULL;
743 Seq
[all...]
H A Dcmstypes.c3308 cmsSEQ* Seq = (cmsSEQ*) Ptr; local
3311 if (!_cmsWriteUInt32Number(io, Seq->n)) return FALSE;
3313 for (i=0; i < Seq ->n; i++) {
3315 cmsPSEQDESC* sec = &Seq -> seq[i];
3422 cmsSEQ* Seq = (cmsSEQ*) Cargo; local
3424 if (!io ->Write(io, 16, Seq ->seq[n].ProfileID.ID8)) return FALSE;
3427 if (!SaveDescription(self, io, Seq ->seq[n].Description)) return FALSE;
3437 cmsSEQ* Seq = (cmsSEQ*) Ptr; local
3444 if (!_cmsWriteUInt32Number(io, Seq ->n)) return FALSE;
3447 if (!WritePositionTable(self, io, 0, Seq
[all...]
/external/llvm/tools/dsymutil/
H A DDwarfLinker.cpp2249 /// \brief Insert the new line info sequence \p Seq into the current
2251 static void insertLineSequence(std::vector<DWARFDebugLine::Row> &Seq, argument
2253 if (Seq.empty())
2256 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) {
2257 Rows.insert(Rows.end(), Seq.begin(), Seq.end());
2258 Seq.clear();
2263 Rows.begin(), Rows.end(), Seq.front(),
2273 InsertPoint->Address == Seq.front().Address && InsertPoint->EndSequence) {
2274 *InsertPoint = Seq
2323 std::vector<DWARFDebugLine::Row> Seq; local
[all...]
/external/v8/tools/gcmole/
H A Dgcmole.cc666 return Seq(expr, 2, exprs, env);
712 return Seq(expr, expr->getNumInits(), expr->getInits(), env);
770 ExprEffect Seq(clang::Stmt* parent, function in class:__anon14966::FunctionAnalyzer
952 void Seq(clang::Stmt* a, clang::Stmt* b, clang::Stmt* c) { function in class:__anon14966::FunctionAnalyzer::Block
959 void Seq(clang::Stmt* a, clang::Stmt* b) { function in class:__anon14966::FunctionAnalyzer::Block
966 Seq(a, b, c);
971 Seq(a, b);
1041 block.Seq(stmt->getCond(), stmt->getBody());
/external/clang/lib/Format/
H A DFormat.cpp275 static size_t size(IO &IO, std::vector<FormatStyle> &Seq) { argument
276 return Seq.size();
278 static FormatStyle &element(IO &IO, std::vector<FormatStyle> &Seq, argument
280 if (Index >= Seq.size()) {
281 assert(Index == Seq.size());
283 if (Seq.size() > 0 && Seq[0].Language == FormatStyle::LK_None) {
284 Template = Seq[0];
289 Seq.resize(Index + 1, Template);
291 return Seq[Inde
[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/llvm/include/llvm/Support/
H A DYAMLTraits.h679 yamlize(IO &io, T &Seq, bool) { argument
682 unsigned count = io.outputting() ? SequenceTraits<T>::size(io, Seq) : incnt;
686 yamlize(io, SequenceTraits<T>::element(io, Seq, i), true);
694 unsigned count = io.outputting() ? SequenceTraits<T>::size(io, Seq) : incnt;
698 yamlize(io, SequenceTraits<T>::element(io, Seq, i), true);
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp1731 OptionalTestSeq Seq; local
1735 Seq.Tests.push_back(One);
1736 Seq.Tests.push_back(Two);
1737 Seq.Tests.push_back(Three);
1738 Seq.Tests.push_back(Four);
1744 yout << Seq; local
/external/clang/lib/Sema/
H A DSemaStmt.cpp2713 InitializationSequence Seq(*this, Entity, Kind, InitExpr);
2719 if (Seq) {
2720 for (InitializationSequence::step_iterator Step = Seq.step_begin(),
2721 StepEnd = Seq.step_end();
2746 Res = Seq.Perform(*this, Entity, Kind, Value);

Completed in 1765 milliseconds

12