Home
last modified time | relevance | path

Searched refs:detectCallDepth (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/angle/src/compiler/
DDetectCallDepth.cpp31 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
DDetectCallDepth.h35 ErrorCode detectCallDepth();
50 int detectCallDepth(DetectCallDepth* detectCallDepth, int depth);
DCompiler.cpp159 … 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()
DShHandle.h88 bool detectCallDepth(TIntermNode* root, TInfoSink& infoSink, bool limitCallStackDepth);