| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | PriorityQueue.h | 26 class Sequence = std::vector<T>, 27 class Compare = std::less<typename Sequence::value_type> > 28 class PriorityQueue : public std::priority_queue<T, Sequence, Compare> { 31 const Sequence &sequence = Sequence()) 32 : std::priority_queue<T, Sequence, Compare>(compare, sequence) 38 const Sequence &sequence = Sequence()) 39 : std::priority_queue<T, Sequence, Compare>(begin, end, compare, sequence) 49 typename Sequence::size_type i = find(this->c, t) - this->c.begin(); in erase_one() 53 typename Sequence::size_type parent = (i - 1) / 2; in erase_one()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MCA/ |
| H A D | SourceMgr.h | 60 ArrayRef<UniqueInst> Sequence; variable 67 : Sequence(S), Current(0U), Iterations(Iter ? Iter : DefaultIterations) {} in CircularSourceMgr() 69 ArrayRef<UniqueInst> getInstructions() const override { return Sequence; } in getInstructions() 73 return Current < (Iterations * Sequence.size()); in hasNext() 79 return SourceRef(Current, *Sequence[Current % Sequence.size()]); in peekNext()
|
| H A D | CodeEmitter.h | 42 ArrayRef<MCInst> Sequence; variable 56 : STI(ST), MAB(AB), MCE(CE), VecOS(Code), Sequence(S), in CodeEmitter()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/ObjCARC/ |
| H A D | PtrState.cpp | 37 raw_ostream &llvm::objcarc::operator<<(raw_ostream &OS, const Sequence S) { in operator <<() 59 static Sequence MergeSeqs(Sequence A, Sequence B, bool TopDown) { in MergeSeqs() 134 void PtrState::SetSeq(Sequence NewSeq) { in SetSeq() 140 void PtrState::ResetSequenceProgress(Sequence NewSeq) { in ResetSequenceProgress() 191 Sequence NewSeq = ReleaseMetadata ? S_MovableRelease : S_Stop; in InitBottomUp() 206 Sequence OldSeq = GetSeq(); in MatchWithRetain() 230 Sequence S = GetSeq(); in HandlePotentialAlterRefCount() 257 auto SetSeqAndInsertReverseInsertPt = [&](Sequence NewSeq){ in HandlePotentialUse() 353 Sequence OldSeq = GetSeq(); in MatchWithRelease()
|
| H A D | PtrState.h | 41 enum Sequence { enum 51 const Sequence S) LLVM_ATTRIBUTE_UNUSED; 148 void SetSeq(Sequence NewSeq); 150 Sequence GetSeq() const { return static_cast<Sequence>(Seq); } in GetSeq() 154 void ResetSequenceProgress(Sequence NewSeq);
|
| /openbsd-src/gnu/llvm/clang/include/clang/Tooling/Syntax/ |
| H A D | Nodes.td | 10 // The archetypes they fall into (Sequence, List etc) are defined in Syntax.td. 46 def ParenExpression : Sequence<Expression> { 62 def IntegerLiteralExpression : Sequence<LiteralExpression> { 74 def CharacterLiteralExpression : Sequence<LiteralExpression> { 82 def FloatingLiteralExpression : Sequence<LiteralExpression> { 94 def StringLiteralExpression : Sequence<LiteralExpression> { 105 def BoolLiteralExpression : Sequence<LiteralExpression> { 113 def CxxNullPtrExpression : Sequence<LiteralExpression> { 131 def IntegerUserDefinedLiteralExpression : Sequence<UserDefinedLiteralExpression> { 139 def FloatUserDefinedLiteralExpression : Sequence<UserDefinedLiteralExpression> { [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
| H A D | DebugUtils.cpp | 80 template <typename Sequence, 81 typename Pred = PrintAll<typename Sequence::value_type>> 84 SequencePrinter(const Sequence &S, char OpenSeq, char CloseSeq, in SequencePrinter() 104 const Sequence &S; 110 template <typename Sequence, typename Pred> 111 SequencePrinter<Sequence, Pred> printSequence(const Sequence &S, char OpenSeq, in printSequence() 113 return SequencePrinter<Sequence, Pred>(S, OpenSeq, CloseSeq, std::move(P)); in printSequence() 117 template <typename Sequence, typename Pred> 119 const SequencePrinter<Sequence, Pred> &Printer) { in operator <<() argument
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugLine.h | 193 struct Sequence { struct 194 Sequence(); 210 static bool orderByHighPC(const Sequence &LHS, const Sequence &RHS) { in orderByHighPC() argument 233 void appendSequence(const DWARFDebugLine::Sequence &S) { in appendSequence() argument 286 using SequenceVector = std::vector<Sequence>; 294 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq, 402 struct Sequence Sequence; member
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugLine.cpp | 503 DWARFDebugLine::Sequence::Sequence() { reset(); } in Sequence() function in DWARFDebugLine::Sequence 505 void DWARFDebugLine::Sequence::reset() { in reset() 548 Sequence.reset(); in resetRowAndSequence() 553 if (Sequence.Empty) { in appendRowToMatrix() 555 Sequence.Empty = false; in appendRowToMatrix() 556 Sequence.LowPC = Row.Address.Address; in appendRowToMatrix() 557 Sequence.FirstRowIndex = RowNumber; in appendRowToMatrix() 562 Sequence.HighPC = Row.Address.Address; in appendRowToMatrix() 563 Sequence.LastRowIndex = RowNumber + 1; in appendRowToMatrix() 564 Sequence.SectionIndex = Row.Address.SectionIndex; in appendRowToMatrix() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaInit.cpp | 3871 maybeRecoverWithZeroInitialization(Sema &S, InitializationSequence &Sequence, in maybeRecoverWithZeroInitialization() argument 3884 Sequence.AddZeroInitializationStep(Entity.getType()); in maybeRecoverWithZeroInitialization() 3885 Sequence.SetZeroInitializationFixit(Init, Loc); in maybeRecoverWithZeroInitialization() 3892 InitializationSequence &Sequence, in MaybeProduceObjCObject() argument 3904 Sequence.AddProduceObjCObjectStep(Entity.getType()); in MaybeProduceObjCObject() 3915 Sequence.AddProduceObjCObjectStep(Entity.getType()); in MaybeProduceObjCObject() 3923 InitializationSequence &Sequence, 3934 InitializationSequence &Sequence, in TryInitializerListConstruction() argument 3941 Sequence.setIncompleteTypeFailure(E); in TryInitializerListConstruction() 3955 TryListInitialization(S, HiddenArray, Kind, List, Sequence, in TryInitializerListConstruction() [all …]
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | communications | 20 0 string mscdocument Message Sequence Chart (document) 21 0 string msc Message Sequence Chart (chart) 22 0 string submsc Message Sequence Chart (subchart)
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | PostRASchedulerList.cpp | 131 std::vector<SUnit*> Sequence; member in __anon86c23cdf0111::SchedulePostRATDList 237 Sequence.clear(); in enterRegion() 253 for (const SUnit *SU : Sequence) { in dumpSchedule() 499 Sequence.push_back(SU); in ScheduleNodeTopDown() 513 Sequence.push_back(nullptr); // NULL here means noop in emitNoop() 547 Sequence.reserve(SUnits.size()); in ListScheduleTopDown() 658 unsigned Noops = llvm::count(Sequence, nullptr); in ListScheduleTopDown() 659 assert(Sequence.size() - Noops == ScheduledNodes && in ListScheduleTopDown() 673 for (unsigned i = 0, e = Sequence.size(); i != e; i++) { in EmitSchedule() 674 if (SUnit *SU = Sequence[i]) in EmitSchedule()
|
| /openbsd-src/gnu/llvm/llvm/lib/MCA/ |
| H A D | CodeEmitter.cpp | 24 const MCInst &Inst = Sequence[MCID]; in getOrCreateEncodingInfo() 25 MCInst Relaxed(Sequence[MCID]); in getOrCreateEncodingInfo()
|
| /openbsd-src/gnu/usr.bin/perl/lib/unicore/ |
| H A D | NamedSqProv.txt | 16 # Name of Sequence; Code Point Sequence for USI 20 # UCS Sequence Identifier (USI) in ISO/IEC 10646 uses
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ScheduleDAGVLIW.cpp | 150 Sequence.push_back(SU); in scheduleNodeTopDown() 179 Sequence.reserve(SUnits.size()); in listScheduleTopDown() 252 Sequence.push_back(nullptr); // NULL here means noop in listScheduleTopDown()
|
| H A D | ScheduleDAGFast.cpp | 183 Sequence.push_back(SU); in ScheduleNodeBottomUp() 557 Sequence.reserve(SUnits.size()); in ListScheduleBottomUp() 644 std::reverse(Sequence.begin(), Sequence.end()); in ListScheduleBottomUp() 668 std::vector<SDNode*> Sequence; member in __anonc41bd3930211::ScheduleDAGLinearize 686 Sequence.push_back(N); in ScheduleNode() 772 Sequence.reserve(DAGSize); in Schedule() 783 unsigned NumNodes = Sequence.size(); in EmitSchedule() 786 SDNode *N = Sequence[NumNodes-i-1]; in EmitSchedule()
|
| H A D | ScheduleDAGSDNodes.h | 53 std::vector<SUnit*> Sequence; variable
|
| H A D | ScheduleDAGSDNodes.cpp | 60 Sequence.clear(); in Run() 713 for (const SUnit *SU : Sequence) { in dumpSchedule() 728 unsigned Noops = llvm::count(Sequence, nullptr); in VerifyScheduledSequence() 729 assert(Sequence.size() - Noops == ScheduledNodes && in VerifyScheduledSequence() 918 for (SUnit *SU : Sequence) { in EmitSchedule()
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | PredicateExpander.cpp | 156 const RecVec &Sequence, in expandPredicateSequence() argument 158 assert(!Sequence.empty() && "Found an invalid empty predicate set!"); in expandPredicateSequence() 159 if (Sequence.size() == 1) in expandPredicateSequence() 160 return expandPredicate(OS, Sequence[0]); in expandPredicateSequence() 169 for (const Record *Rec : Sequence) { in expandPredicateSequence()
|
| H A D | CodeGenSchedule.h | 51 IdxVec Sequence; member 74 HasVariants(false), IsVariadic(false), IsSequence(true), Sequence(Seq) { in CodeGenSchedRW() 75 assert(Sequence.size() > 1 && "implied sequence needs >1 RWs"); in CodeGenSchedRW() 82 assert((!IsSequence || !Sequence.empty()) && "Sequence should be nonempty"); in isValid() 84 return TheDef || !Sequence.empty(); in isValid()
|
| H A D | RegisterInfoEmitter.cpp | 783 SmallVectorImpl<MaskRolPair> &Sequence = Sequences[s]; in emitComposeSubRegIndexLaneMask() local 784 NextSIdx = SIdx + Sequence.size() + 1; in emitComposeSubRegIndexLaneMask() 785 if (Sequence == IdxSequence) { in emitComposeSubRegIndexLaneMask() 805 const SmallVectorImpl<MaskRolPair> &Sequence = Sequences[s]; in emitComposeSubRegIndexLaneMask() local 806 for (size_t p = 0, pe = Sequence.size(); p != pe; ++p) { in emitComposeSubRegIndexLaneMask() 807 const MaskRolPair &P = Sequence[p]; in emitComposeSubRegIndexLaneMask() 815 Idx += Sequence.size() + 1; in emitComposeSubRegIndexLaneMask()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | CloneDetection.cpp | 317 static void CollectStmtSequenceData(const StmtSequence &Sequence, in CollectStmtSequenceData() argument 319 for (const Stmt *S : Sequence) { in CollectStmtSequenceData() 321 S, Sequence.getASTContext(), OutputData); in CollectStmtSequenceData() 327 CollectStmtSequenceData(StmtSequence(Child, Sequence.getContainingDecl()), in CollectStmtSequenceData()
|
| /openbsd-src/gnu/llvm/llvm/utils/filecheck_lint/ |
| H A D | filecheck_lint.py | 34 from typing import Generator, Sequence, Tuple 233 def main(argv: Sequence[str]):
|
| /openbsd-src/gnu/usr.bin/texinfo/util/ |
| H A D | prepinfo.awk | 160 List[++Sequence] = Name 309 for (i = 1; i <= Sequence; i++)
|
| /openbsd-src/gnu/llvm/clang/include/clang/Analysis/ |
| H A D | CloneDetection.h | 373 VariablePattern(const StmtSequence &Sequence) { in VariablePattern() argument 374 for (const Stmt *S : Sequence) in VariablePattern()
|