Home
last modified time | relevance | path

Searched refs:EndIndex (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
Dvariant.h324 template <class Op, std::size_t I, std::size_t EndIndex>
325 using PickCase = typename PickCaseImpl<(I < EndIndex)>::template Apply<Op, I>;
351 template <std::size_t EndIndex>
353 static_assert(EndIndex <= MaxUnrolledVisitCases,
360 return PickCase<Op, 0, EndIndex>::Run(absl::forward<Op>(op));
362 return PickCase<Op, 1, EndIndex>::Run(absl::forward<Op>(op));
364 return PickCase<Op, 2, EndIndex>::Run(absl::forward<Op>(op));
366 return PickCase<Op, 3, EndIndex>::Run(absl::forward<Op>(op));
368 return PickCase<Op, 4, EndIndex>::Run(absl::forward<Op>(op));
370 return PickCase<Op, 5, EndIndex>::Run(absl::forward<Op>(op));
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DDbgEntityHistoryCalculator.h58 : Instr(Instr, Kind), EndIndex(NoEntry) {} in Entry()
61 EntryIndex getEndIndex() const { return EndIndex; } in getEndIndex()
66 bool isClosed() const { return EndIndex != NoEntry; } in isClosed()
68 void endEntry(EntryIndex EndIndex);
72 EntryIndex EndIndex; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DPostRASchedulerList.cpp144 unsigned EndIndex; member in __anon0e0c7b710111::SchedulePostRATDList
161 void setEndIndex(unsigned EndIdx) { EndIndex = EndIdx; } in setEndIndex()
211 : ScheduleDAGInstrs(MF, &MLI), AA(AA), EndIndex(0) { in SchedulePostRATDList()
398 EndIndex, DbgValues); in schedule()
429 AntiDepBreak->Observe(MI, Count, EndIndex); in Observe()
DMachineBasicBlock.cpp1022 SlotIndex EndIndex = Indexes->getMBBEndIdx(NMBB); in SplitCriticalEdge() local
1041 LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI)); in SplitCriticalEdge()
1060 LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI)); in SplitCriticalEdge()
1062 LI.removeSegment(StartIndex, EndIndex); in SplitCriticalEdge()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSROA.cpp1820 uint64_t EndIndex = EndOffset / ElementSize; in isVectorPromotionViableForSlice() local
1821 if (EndIndex * ElementSize != EndOffset || EndIndex > Ty->getNumElements()) in isVectorPromotionViableForSlice()
1824 assert(EndIndex > BeginIndex && "Empty vector!"); in isVectorPromotionViableForSlice()
1825 uint64_t NumElements = EndIndex - BeginIndex; in isVectorPromotionViableForSlice()
2182 unsigned EndIndex, const Twine &Name) { in extractVector() argument
2184 unsigned NumElements = EndIndex - BeginIndex; in extractVector()
2199 for (unsigned i = BeginIndex; i != EndIndex; ++i) in extractVector()
2227 unsigned EndIndex = BeginIndex + Ty->getNumElements(); in insertVector() local
2236 if (i >= BeginIndex && i < EndIndex) in insertVector()
2246 Mask.push_back(IRB.getInt1(i >= BeginIndex && i < EndIndex)); in insertVector()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDbgEntityHistoryCalculator.cpp89 EndIndex = Index; in endEntry()