Searched refs:UnrollCount (Results 1 – 8 of 8) sorted by relevance
/external/eigen/Eigen/src/Core/ |
D | BooleanRedux.h | 17 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);
|
D | SelfAdjointView.h | 204 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…
|
D | Visitor.h | 17 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()
|
D | TriangularMatrix.h | 441 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/Sema/ |
D | SemaStmtAttr.cpp | 71 Option = ValueExpr ? LoopHintAttr::UnrollCount : LoopHintAttr::Unroll; in handleLoopHintAttr() 86 .Case("unroll_count", LoopHintAttr::UnrollCount) in handleLoopHintAttr() 96 Option == LoopHintAttr::UnrollCount) { in handleLoopHintAttr() 153 case LoopHintAttr::UnrollCount: in CheckForIncompatibleAttributes()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopUnrollPass.cpp | 61 UnrollCount("unroll-count", cl::init(0), cl::Hidden, variable 87 CurrentCount = (C == -1) ? UnrollCount : unsigned(C); in LoopUnroll() 98 UserCount = (C != -1) || (UnrollCount.getNumOccurrences() > 0); in LoopUnroll()
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 620 case LoopHintAttr::UnrollCount: in EmitCondBrHints() 650 case LoopHintAttr::UnrollCount: in EmitCondBrHints()
|
/external/clang/include/clang/Basic/ |
D | Attr.td | 1931 "Unroll", "UnrollCount"]>, 1945 case UnrollCount: return "unroll_count"; 1974 option == UnrollCount)
|