Searched refs:detectCallDepth (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/angle/src/compiler/ |
D | DetectCallDepth.cpp | 31 int DetectCallDepth::FunctionNode::detectCallDepth(DetectCallDepth* detectCallDepth, int depth) in detectCallDepth() argument 34 ASSERT(detectCallDepth); in detectCallDepth() 47 if (detectCallDepth->checkExceedsMaxDepth(depth)) in detectCallDepth() 49 int callDepth = callees[i]->detectCallDepth(detectCallDepth, depth + 1); in detectCallDepth() 51 if (detectCallDepth->checkExceedsMaxDepth(callDepth)) { in detectCallDepth() 52 detectCallDepth->getInfoSink().info << "<-" << callees[i]->getName(); in detectCallDepth() 144 int maxCallDepth = func->detectCallDepth(this, 1); in detectCallDepthForFunction() 155 DetectCallDepth::ErrorCode DetectCallDepth::detectCallDepth() in detectCallDepth() function in DetectCallDepth
|
D | DetectCallDepth.h | 35 ErrorCode detectCallDepth(); 50 int detectCallDepth(DetectCallDepth* detectCallDepth, int depth);
|
D | Compiler.cpp | 159 … success = detectCallDepth(root, infoSink, (compileOptions & SH_LIMIT_CALL_STACK_DEPTH) != 0); in compile() 294 bool TCompiler::detectCallDepth(TIntermNode* root, TInfoSink& infoSink, bool limitCallStackDepth) in detectCallDepth() function in TCompiler 298 switch (detect.detectCallDepth()) { in detectCallDepth()
|
D | ShHandle.h | 88 bool detectCallDepth(TIntermNode* root, TInfoSink& infoSink, bool limitCallStackDepth);
|