HomeSort by relevance Sort by last modified time
    Searched refs:MaxDepth (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 121 int MaxDepth,
128 MaxDepth(MaxDepth),
224 if (CurrentDepth < MaxDepth) {
241 if (CurrentDepth < MaxDepth) {
253 const int MaxDepth;
320 BoundNodesTreeBuilder *Builder, int MaxDepth,
331 MaxDepth, Traversal, Bind);
342 BoundNodesTreeBuilder *Builder, int MaxDepth,
345 &Matcher, this, Builder, MaxDepth, Traversal, Bind)
    [all...]
  /external/llvm/lib/CodeGen/
EarlyIfConversion.cpp 720 unsigned MaxDepth = Slack + TailTrace.getInstrCycles(PI.PHI).Depth;
725 if (CondDepth > MaxDepth) {
726 unsigned Extra = CondDepth - MaxDepth;
736 if (TDepth > MaxDepth) {
737 unsigned Extra = TDepth - MaxDepth;
747 if (FDepth > MaxDepth) {
748 unsigned Extra = FDepth - MaxDepth;
  /external/clang/lib/AST/
StmtDumper.cpp 34 /// MaxDepth - When doing a normal dump (not dumpAll) we only want to dump
37 unsigned MaxDepth;
45 StmtDumper(SourceManager *sm, raw_ostream &os, unsigned maxDepth)
46 : SM(sm), OS(os), IndentLevel(0-1), MaxDepth(maxDepth) {
53 if (MaxDepth == 0) return;
  /external/clang/lib/Parse/
RAIIObjectsForParser.h 374 enum { MaxDepth = 256 };
410 if (getDepth() < MaxDepth) {
Parser.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 35 const unsigned MaxDepth = 6;
231 assert(Depth <= MaxDepth && "Limit Search Depth");
322 if (Depth == MaxDepth)
695 if (Depth < MaxDepth - 1 && !KnownZero && !KnownOne) {
711 MaxDepth-1);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]

Completed in 225 milliseconds