/external/eigen/Eigen/src/Core/ |
D | BooleanRedux.h | 17 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);
|
D | Visitor.h | 17 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()
|
D | TriangularMatrix.h | 727 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/ |
D | CGLoopInfo.cpp | 26 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 …]
|
D | CGLoopInfo.h | 60 unsigned UnrollCount; member 154 void setUnrollCount(unsigned C) { StagedAttrs.UnrollCount = C; } in setUnrollCount()
|
/external/llvm-project/llvm/tools/llvm-opt-report/ |
D | OptReport.cpp | 102 int UnrollCount = 1; member 112 UnrollCount = std::max(UnrollCount, RHS.UnrollCount); in operator |=() 138 else if (UnrollCount < RHS.UnrollCount) in operator <() 199 int UnrollCount = 1; in readLocationInfo() local 207 Arg.Val.getAsInteger(10, UnrollCount); in readLocationInfo() 234 LI.UnrollCount = UnrollCount; in readLocationInfo() 294 unsigned UCDigits = llvm::utostr(MaxLI.UnrollCount).size(); in writeReport() 374 RS << LLI.UnrollCount; in writeReport()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGLoopInfo.cpp | 91 Attrs.UnrollCount != 0) in createPartialUnrollMetadata() 118 if (Attrs.UnrollCount > 0) { in createPartialUnrollMetadata() 121 llvm::Type::getInt32Ty(Ctx), Attrs.UnrollCount))}; in createPartialUnrollMetadata() 436 InterleaveCount(0), UnrollCount(0), UnrollAndJamCount(0), in LoopAttributes() 444 UnrollCount = 0; in clear() 469 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 && in LoopInfo() 524 AfterJam.UnrollCount = Attrs.UnrollCount; in finish() 604 Option = LoopHintAttr::UnrollCount; in push() 643 case LoopHintAttr::UnrollCount: in push() 670 case LoopHintAttr::UnrollCount: in push() [all …]
|
D | CGLoopInfo.h | 65 unsigned UnrollCount; member 265 void setUnrollCount(unsigned C) { StagedAttrs.UnrollCount = C; } in setUnrollCount()
|
/external/clang/lib/Sema/ |
D | SemaStmtAttr.cpp | 90 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/llvm-project/clang/lib/Sema/ |
D | SemaStmtAttr.cpp | 113 SetHints(LoopHintAttr::UnrollCount, LoopHintAttr::Numeric); in handleLoopHintAttr() 136 .Case("unroll_count", LoopHintAttr::UnrollCount) in handleLoopHintAttr() 144 Option == LoopHintAttr::UnrollCount || in handleLoopHintAttr() 277 case LoopHintAttr::UnrollCount: in CheckForIncompatibleAttributes()
|
/external/llvm-project/clang/lib/AST/ |
D | AttrImpl.cpp | 65 (option == UnrollCount ? getValueString(Policy) : ""); in getDiagnosticName()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopUnrollPass.cpp | 64 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-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopUnrollPass.cpp | 103 static cl::opt<unsigned> UnrollCount( variable 747 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0; in computeUnrollCount() 749 UP.Count = UnrollCount; in computeUnrollCount()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | LoopUnrollPass.cpp | 110 static cl::opt<unsigned> UnrollCount( variable 754 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0; in computeUnrollCount() 756 UP.Count = UnrollCount; in computeUnrollCount()
|
/external/clang/include/clang/Basic/ |
D | Attr.td | 2223 "Unroll", "UnrollCount", "Distribute"]>, 2237 case UnrollCount: return "unroll_count"; 2284 return "#pragma unroll" + (option == UnrollCount ? getValueString(Policy) : "");
|
/external/llvm-project/clang/include/clang/Basic/ |
D | Attr.td | 3339 "Unroll", "UnrollCount", "UnrollAndJam", "UnrollAndJamCount", 3355 case UnrollCount: return "unroll_count";
|