Home
last modified time | relevance | path

Searched refs:StackDepth (Results 1 – 11 of 11) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp357 bool &IsRecursive, unsigned &StackDepth) { in examineStackFrames() argument
359 StackDepth = 0; in examineStackFrames()
369 ++StackDepth; in examineStackFrames()
378 ++StackDepth; in examineStackFrames()
861 unsigned StackDepth = 0; in shouldInlineCall() local
862 examineStackFrames(D, Pred->getLocationContext(), IsRecursive, StackDepth); in shouldInlineCall()
863 if ((StackDepth >= Opts.InlineMaxStackDepth) && in shouldInlineCall()
/external/mesa3d/src/mesa/program/
Dprog_execute.h73 GLuint StackDepth; /**< Index/ptr to top of CallStack[] */ member
Dprog_execute.c759 if (machine->StackDepth >= MAX_PROGRAM_CALL_DEPTH) { in _mesa_execute_program()
762 machine->CallStack[machine->StackDepth++] = pc + 1; /* next inst */ in _mesa_execute_program()
1424 if (machine->StackDepth == 0) { in _mesa_execute_program()
1428 pc = machine->CallStack[--machine->StackDepth] - 1; in _mesa_execute_program()
/external/chromium_org/third_party/mesa/src/src/mesa/program/
Dprog_execute.h73 GLuint StackDepth; /**< Index/ptr to top of CallStack[] */ member
Dprog_execute.c759 if (machine->StackDepth >= MAX_PROGRAM_CALL_DEPTH) { in _mesa_execute_program()
762 machine->CallStack[machine->StackDepth++] = pc + 1; /* next inst */ in _mesa_execute_program()
1424 if (machine->StackDepth == 0) { in _mesa_execute_program()
1428 pc = machine->CallStack[--machine->StackDepth] - 1; in _mesa_execute_program()
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
Ds_fragprog.c204 machine->StackDepth = 0; in init_machine()
/external/mesa3d/src/mesa/swrast/
Ds_fragprog.c204 machine->StackDepth = 0; in init_machine()
/external/qemu/distrib/sdl-1.2.15/src/audio/symbian/
DSDL_epocaudio.cpp241 ASSERT(as->StackDepth() == 0);
/external/mesa3d/src/mesa/tnl/
Dt_vb_program.c258 machine->StackDepth = 0; in init_machine()
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
Dt_vb_program.c258 machine->StackDepth = 0; in init_machine()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExprEngine.h553 bool &IsRecursive, unsigned &StackDepth);