Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/Core/
DBooleanRedux.h17 template<typename Derived, int UnrollCount>
21 col = (UnrollCount-1) / Derived::RowsAtCompileTime,
22 row = (UnrollCount-1) % Derived::RowsAtCompileTime
27 return all_unroller<Derived, UnrollCount-1>::run(mat) && mat.coeff(row, col); in run()
43 template<typename Derived, int UnrollCount>
47 col = (UnrollCount-1) / Derived::RowsAtCompileTime,
48 row = (UnrollCount-1) % Derived::RowsAtCompileTime
53 return any_unroller<Derived, UnrollCount-1>::run(mat) || mat.coeff(row, col);
DSelfAdjointView.h204 template<typename Derived1, typename Derived2, int UnrollCount, bool ClearOpposite>
205 struct triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Upper), UnrollCount, ClearOp…
208 col = (UnrollCount-1) / Derived1::RowsAtCompileTime,
209 row = (UnrollCount-1) % Derived1::RowsAtCompileTime
214 …triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Upper), UnrollCount-1, ClearOpposi…
229 template<typename Derived1, typename Derived2, int UnrollCount, bool ClearOpposite>
230 struct triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Lower), UnrollCount, ClearOp…
233 col = (UnrollCount-1) / Derived1::RowsAtCompileTime,
234 row = (UnrollCount-1) % Derived1::RowsAtCompileTime
239 …triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Lower), UnrollCount-1, ClearOpposi…
DVisitor.h17 template<typename Visitor, typename Derived, int UnrollCount>
21 col = (UnrollCount-1) / Derived::RowsAtCompileTime,
22 row = (UnrollCount-1) % Derived::RowsAtCompileTime
27 visitor_impl<Visitor, Derived, UnrollCount-1>::run(mat, visitor); in run()
DTriangularMatrix.h441 template<typename Derived1, typename Derived2, unsigned int Mode, int UnrollCount, bool ClearOpposi…
445 col = (UnrollCount-1) / Derived1::RowsAtCompileTime,
446 row = (UnrollCount-1) % Derived1::RowsAtCompileTime
453 …triangular_assignment_selector<Derived1, Derived2, Mode, UnrollCount-1, ClearOpposite>::run(dst, s…
/external/clang/lib/CodeGen/
DCGLoopInfo.cpp25 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 && in createMetadata()
52 if (Attrs.UnrollCount > 0) { in createMetadata()
55 Type::getInt32Ty(Ctx), Attrs.UnrollCount))}; in createMetadata()
90 InterleaveCount(0), UnrollCount(0) {} in LoopAttributes()
96 UnrollCount = 0; in clear()
146 case LoopHintAttr::UnrollCount: in push()
162 case LoopHintAttr::UnrollCount: in push()
178 case LoopHintAttr::UnrollCount: in push()
192 case LoopHintAttr::UnrollCount: in push()
207 case LoopHintAttr::UnrollCount: in push()
DCGLoopInfo.h59 unsigned UnrollCount; member
141 void setUnrollCount(unsigned C) { StagedAttrs.UnrollCount = C; } in setUnrollCount()
/external/clang/lib/Sema/
DSemaStmtAttr.cpp80 Option = LoopHintAttr::UnrollCount; in handleLoopHintAttr()
99 .Case("unroll_count", LoopHintAttr::UnrollCount) in handleLoopHintAttr()
103 Option == LoopHintAttr::UnrollCount) { in handleLoopHintAttr()
166 case LoopHintAttr::UnrollCount: in CheckForIncompatibleAttributes()
/external/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp62 UnrollCount("unroll-count", cl::init(0), cl::Hidden, variable
89 CurrentCount = (C == -1) ? UnrollCount : unsigned(C); in LoopUnroll()
101 UserCount = (C != -1) || (UnrollCount.getNumOccurrences() > 0); in LoopUnroll()
/external/clang/include/clang/Basic/
DAttr.td2091 "Unroll", "UnrollCount"]>,
2105 case UnrollCount: return "unroll_count";
2151 return "#pragma unroll" + (option == UnrollCount ? getValueString(Policy) : "");