Home
last modified time | relevance | path

Searched refs:UnrollCount (Results 1 – 11 of 11) sorted by relevance

/external/eigen/Eigen/src/Core/
DBooleanRedux.h17 template<typename Derived, int UnrollCount>
22 col = (UnrollCount-1) / Traits::RowsAtCompileTime,
23 row = (UnrollCount-1) % Traits::RowsAtCompileTime
28 return all_unroller<Derived, UnrollCount-1>::run(mat) && mat.coeff(row, col); in run()
44 template<typename Derived, int UnrollCount>
49 col = (UnrollCount-1) / Traits::RowsAtCompileTime,
50 row = (UnrollCount-1) % Traits::RowsAtCompileTime
55 return any_unroller<Derived, UnrollCount-1>::run(mat) || mat.coeff(row, col);
DVisitor.h17 template<typename Visitor, typename Derived, int UnrollCount>
21 col = (UnrollCount-1) / Derived::RowsAtCompileTime,
22 row = (UnrollCount-1) % Derived::RowsAtCompileTime
28 visitor_impl<Visitor, Derived, UnrollCount-1>::run(mat, visitor); in run()
DTriangularMatrix.h727 template<typename Kernel, unsigned int Mode, int UnrollCount, bool ClearOpposite> struct triangular…
852 template<typename Kernel, unsigned int Mode, int UnrollCount, bool SetOpposite>
860 col = (UnrollCount-1) / DstXprType::RowsAtCompileTime,
861 row = (UnrollCount-1) % DstXprType::RowsAtCompileTime
869 triangular_assignment_loop<Kernel, Mode, UnrollCount-1, SetOpposite>::run(kernel);
/external/clang/lib/CodeGen/
DCGLoopInfo.cpp26 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 && in createMetadata()
59 if (Attrs.UnrollCount > 0) { in createMetadata()
62 Type::getInt32Ty(Ctx), Attrs.UnrollCount))}; in createMetadata()
105 InterleaveCount(0), UnrollCount(0), in LoopAttributes()
112 UnrollCount = 0; in clear()
158 Option = LoopHintAttr::UnrollCount; in push()
188 case LoopHintAttr::UnrollCount: in push()
207 case LoopHintAttr::UnrollCount: in push()
223 case LoopHintAttr::UnrollCount: in push()
238 case LoopHintAttr::UnrollCount: in push()
[all …]
DCGLoopInfo.h60 unsigned UnrollCount; member
154 void setUnrollCount(unsigned C) { StagedAttrs.UnrollCount = C; } in setUnrollCount()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-opt-report/
DOptReport.cpp99 int UnrollCount = 1; member
109 UnrollCount = std::max(UnrollCount, RHS.UnrollCount); in operator |=()
135 else if (UnrollCount < RHS.UnrollCount) in operator <()
167 int UnrollCount = 1; in collectLocationInfo() local
238 Value->getValue(Tmp).getAsInteger(10, UnrollCount); in collectLocationInfo()
262 LI.UnrollCount = UnrollCount; in collectLocationInfo()
341 unsigned UCDigits = llvm::utostr(MaxLI.UnrollCount).size(); in writeReport()
421 RS << LLI.UnrollCount; in writeReport()
/external/clang/lib/Sema/
DSemaStmtAttr.cpp90 Option = LoopHintAttr::UnrollCount; in handleLoopHintAttr()
109 .Case("unroll_count", LoopHintAttr::UnrollCount) in handleLoopHintAttr()
114 Option == LoopHintAttr::UnrollCount) { in handleLoopHintAttr()
180 case LoopHintAttr::UnrollCount: in CheckForIncompatibleAttributes()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DLoopUnrollPass.cpp35 UnrollCount("unroll-count", cl::init(0), cl::Hidden, variable
54 CurrentCount = (C == -1) ? UnrollCount : unsigned(C); in LoopUnroll()
/external/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp64 static cl::opt<unsigned> UnrollCount( variable
704 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0; in computeUnrollCount()
706 UP.Count = UnrollCount; in computeUnrollCount()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp94 static cl::opt<unsigned> UnrollCount( variable
724 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0; in computeUnrollCount()
726 UP.Count = UnrollCount; in computeUnrollCount()
/external/clang/include/clang/Basic/
DAttr.td2223 "Unroll", "UnrollCount", "Distribute"]>,
2237 case UnrollCount: return "unroll_count";
2284 return "#pragma unroll" + (option == UnrollCount ? getValueString(Policy) : "");