/external/clang/lib/ASTMatchers/ |
D | ASTMatchFinder.cpp | 121 int MaxDepth, in MatchChildASTVisitor() argument 128 MaxDepth(MaxDepth), in MatchChildASTVisitor() 224 if (CurrentDepth < MaxDepth) { in traverse() 241 if (CurrentDepth < MaxDepth) { in traverse() 253 const int MaxDepth; member in clang::ast_matchers::internal::__anond2c632dd0111::MatchChildASTVisitor 320 BoundNodesTreeBuilder *Builder, int MaxDepth, in memoizedMatchesRecursively() argument 331 MaxDepth, Traversal, Bind); in memoizedMatchesRecursively() 342 BoundNodesTreeBuilder *Builder, int MaxDepth, in matchesRecursively() argument 345 &Matcher, this, Builder, MaxDepth, Traversal, Bind); in matchesRecursively()
|
/external/eigen/Eigen/src/Core/products/ |
D | GeneralMatrixMatrix.h | 237 …er, typename LhsScalar, typename RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor=1, 238 bool FiniteAtCompileTime = MaxRows!=Dynamic && MaxCols!=Dynamic && MaxDepth != Dynamic> class gemm_… 270 …er, typename _LhsScalar, typename _RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor> 271 class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, MaxDepth, KcFactor, … 285 SizeA = ActualRows * MaxDepth, 286 SizeB = ActualCols * MaxDepth, 287 SizeW = MaxDepth * Traits::WorkSpaceFactor 300 this->m_kc = MaxDepth; 312 …er, typename _LhsScalar, typename _RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor> 313 class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, MaxDepth, KcFactor, …
|
/external/llvm/lib/CodeGen/ |
D | EarlyIfConversion.cpp | 720 unsigned MaxDepth = Slack + TailTrace.getInstrCycles(PI.PHI).Depth; in shouldConvertIf() local 725 if (CondDepth > MaxDepth) { in shouldConvertIf() 726 unsigned Extra = CondDepth - MaxDepth; in shouldConvertIf() 736 if (TDepth > MaxDepth) { in shouldConvertIf() 737 unsigned Extra = TDepth - MaxDepth; in shouldConvertIf() 747 if (FDepth > MaxDepth) { in shouldConvertIf() 748 unsigned Extra = FDepth - MaxDepth; in shouldConvertIf()
|
/external/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 35 const unsigned MaxDepth = 6; variable 231 assert(Depth <= MaxDepth && "Limit Search Depth"); in ComputeMaskedBits() 322 if (Depth == MaxDepth) in ComputeMaskedBits() 695 if (Depth < MaxDepth - 1 && !KnownZero && !KnownOne) { in ComputeMaskedBits() 711 MaxDepth-1); in ComputeMaskedBits() 820 if (Depth++ == MaxDepth) in isPowerOfTwo() 874 if (Depth++ >= MaxDepth) in isKnownNonZero() 1179 const unsigned MaxDepth = 6; in ComputeMultiple() local 1182 assert(Depth <= MaxDepth && "Limit Search Depth"); in ComputeMultiple() 1210 if (Depth == MaxDepth) return false; // Limit search depth. in ComputeMultiple()
|
/external/clang/lib/Parse/ |
D | RAIIObjectsForParser.h | 374 enum { MaxDepth = 256 }; enumerator 410 if (getDepth() < MaxDepth) { in consumeOpen()
|
D | Parser.cpp | 1897 if (getDepth() < MaxDepth) in expectAndConsume()
|
/external/clang/lib/AST/ |
D | StmtDumper.cpp | 37 unsigned MaxDepth; member in __anon455229ce0111::StmtDumper 46 : SM(sm), OS(os), IndentLevel(0-1), MaxDepth(maxDepth) { in StmtDumper() 53 if (MaxDepth == 0) return; in DumpSubTree()
|
/external/eigen/Eigen/src/Core/ |
D | GeneralProduct.h | 66 MaxDepth = EIGEN_SIZE_MIN_PREFER_FIXED(_Lhs::MaxColsAtCompileTime, enumerator 79 depth_select = product_size_category<Depth,MaxDepth>::value enumerator
|
/external/llvm/lib/Transforms/Vectorize/ |
D | BBVectorize.cpp | 1382 size_t MaxDepth = Tree.lookup(*J); in findBestTreeFor() local 1386 MaxDepth << " and size " << Tree.size() << "\n"); in findBestTreeFor() 1408 MaxDepth << " and size " << PrunedTree.size() << in findBestTreeFor() 1410 if (MaxDepth >= Config.ReqChainDepth && EffSize > BestEffSize) { in findBestTreeFor() 1411 BestMaxDepth = MaxDepth; in findBestTreeFor()
|