/external/eigen/Eigen/src/Core/products/ |
D | GeneralMatrixMatrix.h | 242 …er, typename LhsScalar, typename RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor=1, 243 bool FiniteAtCompileTime = MaxRows!=Dynamic && MaxCols!=Dynamic && MaxDepth != Dynamic> class gemm_… 273 …er, typename _LhsScalar, typename _RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor> 274 class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, MaxDepth, KcFactor, … 288 SizeA = ActualRows * MaxDepth, 289 SizeB = ActualCols * MaxDepth 306 this->m_kc = MaxDepth; 324 …er, typename _LhsScalar, typename _RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor> 325 class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, MaxDepth, KcFactor, …
|
/external/clang/lib/ASTMatchers/ |
D | ASTMatchFinder.cpp | 90 int MaxDepth, in MatchChildASTVisitor() argument 97 MaxDepth(MaxDepth), in MatchChildASTVisitor() 246 if (CurrentDepth == 0 || CurrentDepth > MaxDepth) { in match() 285 const int MaxDepth; member in clang::ast_matchers::internal::__anonf927a3570111::MatchChildASTVisitor 378 BoundNodesTreeBuilder *Builder, int MaxDepth, in memoizedMatchesRecursively() argument 382 return matchesRecursively(Node, Matcher, Builder, MaxDepth, Traversal, in memoizedMatchesRecursively() 400 MaxDepth, Traversal, Bind); in memoizedMatchesRecursively() 412 BoundNodesTreeBuilder *Builder, int MaxDepth, in matchesRecursively() argument 415 &Matcher, this, Builder, MaxDepth, Traversal, Bind); in matchesRecursively()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | EarlyIfConversion.cpp | 731 unsigned MaxDepth = Slack + TailTrace.getInstrCycles(*PI.PHI).Depth; in shouldConvertIf() local 736 if (CondDepth > MaxDepth) { in shouldConvertIf() 737 unsigned Extra = CondDepth - MaxDepth; in shouldConvertIf() 747 if (TDepth > MaxDepth) { in shouldConvertIf() 748 unsigned Extra = TDepth - MaxDepth; in shouldConvertIf() 758 if (FDepth > MaxDepth) { in shouldConvertIf() 759 unsigned Extra = FDepth - MaxDepth; in shouldConvertIf()
|
D | ScheduleDAG.cpp | 329 unsigned MaxDepth = BestI->getSUnit()->getDepth(); in biasCriticalPath() local 332 if (I->getKind() == SDep::Data && I->getSUnit()->getDepth() > MaxDepth) in biasCriticalPath()
|
D | MachinePipeliner.cpp | 464 unsigned MaxDepth = 0; member in __anona194c52b0111::NodeSet 515 MaxDepth = std::max(MaxDepth, SSD->getDepth(SU)); in computeNodeSetInfo() 521 unsigned getMaxDepth() { return MaxDepth; } in getMaxDepth() 528 MaxDepth = 0; in clear() 544 return MaxDepth > RHS.MaxDepth; in operator >() 552 MaxDepth == RHS.MaxDepth; in operator ==() 562 << " depth " << MaxDepth << " col " << Colocate << "\n"; in print()
|
/external/llvm/lib/CodeGen/ |
D | EarlyIfConversion.cpp | 730 unsigned MaxDepth = Slack + TailTrace.getInstrCycles(*PI.PHI).Depth; in shouldConvertIf() local 735 if (CondDepth > MaxDepth) { in shouldConvertIf() 736 unsigned Extra = CondDepth - MaxDepth; in shouldConvertIf() 746 if (TDepth > MaxDepth) { in shouldConvertIf() 747 unsigned Extra = TDepth - MaxDepth; in shouldConvertIf() 757 if (FDepth > MaxDepth) { in shouldConvertIf() 758 unsigned Extra = FDepth - MaxDepth; in shouldConvertIf()
|
D | ScheduleDAG.cpp | 303 unsigned MaxDepth = BestI->getSUnit()->getDepth(); in biasCriticalPath() local 306 if (I->getKind() == SDep::Data && I->getSUnit()->getDepth() > MaxDepth) in biasCriticalPath()
|
D | MachinePipeliner.cpp | 425 int MaxDepth = 0; member in __anon5f28c6f30111::NodeSet 470 MaxDepth = std::max(MaxDepth, SSD->getDepth(SU)); in computeNodeSetInfo() 479 MaxDepth = 0; in clear() 495 return MaxDepth > RHS.MaxDepth; in operator >() 503 MaxDepth == RHS.MaxDepth; in operator ==() 513 << " depth " << MaxDepth << " col " << Colocate << "\n"; in print()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86CmovConversion.cpp | 432 DepthInfo &MaxDepth = LoopDepth[I]; in checkForProfitableCmovCandidates() local 473 MaxDepth.Depth = std::max(MaxDepth.Depth, MIDepth); in checkForProfitableCmovCandidates() 474 MaxDepth.OptDepth = std::max(MaxDepth.OptDepth, MIDepthOpt); in checkForProfitableCmovCandidates()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXFavorNonGenericAddrSpaces.cpp | 230 const int MaxDepth = 20; in hoistAddrSpaceCastFrom() local 231 if (Depth >= MaxDepth) in hoistAddrSpaceCastFrom()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ValueTracking.cpp | 33 const unsigned MaxDepth = 6; variable 64 assert(Depth <= MaxDepth && "Limit Search Depth"); in ComputeMaskedBits() 147 if (Depth == MaxDepth || Mask == 0) in ComputeMaskedBits() 645 if (Depth < MaxDepth - 1 && !KnownZero && !KnownOne) { in ComputeMaskedBits() 661 KnownZero2, KnownOne2, TD, MaxDepth-1); in ComputeMaskedBits() 731 if (Depth++ == MaxDepth) in isPowerOfTwo() 770 if (Depth++ == MaxDepth) in isKnownNonZero() 1075 const unsigned MaxDepth = 6; in ComputeMultiple() local 1078 assert(Depth <= MaxDepth && "Limit Search Depth"); in ComputeMultiple() 1106 if (Depth == MaxDepth) return false; // Limit search depth. in ComputeMultiple()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 79 const unsigned MaxDepth = 6; variable 119 std::array<const Value *, MaxDepth> Excluded; 608 if (Depth == MaxDepth) in computeKnownBitsFromAssume() 1415 if (Depth < MaxDepth - 1 && !Known.Zero && !Known.One) { in computeKnownBitsFromOperator() 1429 computeKnownBits(IncValue, Known2, MaxDepth - 1, Q); in computeKnownBitsFromOperator() 1567 assert(Depth <= MaxDepth && "Limit Search Depth"); in computeKnownBits() 1638 if (Depth == MaxDepth) in computeKnownBits() 1674 assert(Depth <= MaxDepth && "Limit Search Depth"); in isKnownToBeAPowerOfTwo() 1693 if (Depth++ == MaxDepth) in isKnownToBeAPowerOfTwo() 1821 if (Depth++ >= MaxDepth) in isGEPKnownNonNull() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | matrix.c | 234 if (stack->Depth + 1 >= stack->MaxDepth) { in _mesa_PushMatrix() 666 stack->MaxDepth = maxDepth; in init_matrix_stack()
|
/external/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 47 const unsigned MaxDepth = 6; variable 83 std::array<const Value*, MaxDepth> Excluded; 555 if (Depth == MaxDepth) in computeKnownBitsFromAssume() 1254 if (Depth < MaxDepth - 1 && !KnownZero && !KnownOne) { in computeKnownBitsFromOperator() 1269 computeKnownBits(IncValue, KnownZero2, KnownOne2, MaxDepth - 1, Q); in computeKnownBitsFromOperator() 1378 assert(Depth <= MaxDepth && "Limit Search Depth"); in computeKnownBits() 1443 if (Depth == MaxDepth) in computeKnownBits() 1516 if (Depth++ == MaxDepth) in isKnownToBeAPowerOfTwo() 1639 if (Depth++ >= MaxDepth) in isGEPKnownNonNull() 1708 if (Depth++ >= MaxDepth) in isKnownNonZero() [all …]
|
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/quantiles/ |
D | weighted_quantiles_stream.h | 194 size_t MaxDepth() const { return summary_levels_.size(); } in MaxDepth() function
|
/external/tensorflow/tensorflow/core/kernels/boosted_trees/quantiles/ |
D | weighted_quantiles_stream.h | 194 size_t MaxDepth() const { return summary_levels_.size(); } in MaxDepth() function
|
/external/eigen/Eigen/src/Core/ |
D | GeneralProduct.h | 45 MaxDepth = EIGEN_SIZE_MIN_PREFER_FIXED(traits<_Lhs>::MaxColsAtCompileTime, enumerator 57 depth_select = product_size_category<Depth,MaxDepth>::value enumerator
|
/external/clang/lib/Parse/ |
D | RAIIObjectsForParser.h | 380 enum { MaxDepth = 256 }; enumerator
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/ |
D | LoadStoreVectorizer.cpp | 147 static const unsigned MaxDepth = 3; member in __anon7bf6f80c0111::Vectorizer 457 if (Depth++ == MaxDepth) in lookThroughSelects()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | BBVectorize.cpp | 1878 size_t MaxDepth = DAG.lookup(IJ); in findBestDAGFor() local 1882 MaxDepth << " and size " << DAG.size() << "\n"); in findBestDAGFor() 2195 MaxDepth << " and size " << PrunedDAG.size() << in findBestDAGFor() 2198 MaxDepth >= Config.ReqChainDepth) && in findBestDAGFor() 2200 BestMaxDepth = MaxDepth; in findBestDAGFor()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 946 const unsigned MaxDepth = 6; variable 1042 if (Depth++ == MaxDepth) in visitUDivOperand()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 789 static const unsigned MaxDepth = 6; variable 880 if (Depth++ == MaxDepth) in visitUDivOperand()
|
/external/python/cpython2/Doc/library/ |
D | xml.etree.elementtree.rst | 1000 >>> class MaxDepth: # The target object of the parser 1014 >>> target = MaxDepth()
|
/external/python/cpython3/Doc/library/ |
D | xml.etree.elementtree.rst | 1096 >>> class MaxDepth: # The target object of the parser 1110 >>> target = MaxDepth()
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationWin32KeyedMutexTests.cpp | 761 vp.MaxDepth = 1.0f; in DX11Operation()
|