Searched refs:CallStack (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_execute.h72 GLuint CallStack[MAX_PROGRAM_CALL_DEPTH]; /**< For CAL/RET instructions */ member in struct:gl_program_machine
73 GLuint StackDepth; /**< Index/ptr to top of CallStack[] */
H A Dprog_execute.c762 machine->CallStack[machine->StackDepth++] = pc + 1; /* next inst */
1428 pc = machine->CallStack[--machine->StackDepth] - 1;
/external/chromium_org/tools/findit/
H A Dstacktrace.py39 class CallStack(object): class in inherits:object
90 current_stack = CallStack(-1)
100 current_stack = CallStack(stack_priority)
108 current_stack = CallStack(stack_priority)
/external/mesa3d/src/mesa/program/
H A Dprog_execute.h72 GLuint CallStack[MAX_PROGRAM_CALL_DEPTH]; /**< For CAL/RET instructions */ member in struct:gl_program_machine
73 GLuint StackDepth; /**< Index/ptr to top of CallStack[] */
H A Dprog_execute.c762 machine->CallStack[machine->StackDepth++] = pc + 1; /* next inst */
1428 pc = machine->CallStack[--machine->StackDepth] - 1;
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp535 StackDiagVector &CallStack) {
542 for (StackDiagVector::iterator I = CallStack.begin(),
543 E = CallStack.end(); I != E; ++I) {
570 StackDiagVector CallStack; local
587 CallStack.push_back(StackDiagPair(C, N));
612 if (!CallStack.empty()) {
613 assert(CallStack.back().first == C);
614 CallStack.pop_back();
878 updateStackPiecesWithMessage(p, CallStack);
1402 StackDiagVector CallStack; local
534 updateStackPiecesWithMessage(PathDiagnosticPiece *P, StackDiagVector &CallStack) argument
1647 StackDiagVector CallStack; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.h325 struct tgsi_call_record CallStack[TGSI_EXEC_MAX_CALL_NESTING]; member in struct:tgsi_exec_machine
H A Dtgsi_exec.c3733 mach->CallStack[mach->CallStackTop].CondStackTop = mach->CondStackTop;
3734 mach->CallStack[mach->CallStackTop].LoopStackTop = mach->LoopStackTop;
3735 mach->CallStack[mach->CallStackTop].ContStackTop = mach->ContStackTop;
3736 mach->CallStack[mach->CallStackTop].SwitchStackTop = mach->SwitchStackTop;
3737 mach->CallStack[mach->CallStackTop].BreakStackTop = mach->BreakStackTop;
3739 mach->CallStack[mach->CallStackTop].ReturnAddr = *pc;
3781 mach->CondStackTop = mach->CallStack[mach->CallStackTop].CondStackTop;
3784 mach->LoopStackTop = mach->CallStack[mach->CallStackTop].LoopStackTop;
3787 mach->ContStackTop = mach->CallStack[mach->CallStackTop].ContStackTop;
3790 mach->SwitchStackTop = mach->CallStack[mac
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.h325 struct tgsi_call_record CallStack[TGSI_EXEC_MAX_CALL_NESTING]; member in struct:tgsi_exec_machine
H A Dtgsi_exec.c3733 mach->CallStack[mach->CallStackTop].CondStackTop = mach->CondStackTop;
3734 mach->CallStack[mach->CallStackTop].LoopStackTop = mach->LoopStackTop;
3735 mach->CallStack[mach->CallStackTop].ContStackTop = mach->ContStackTop;
3736 mach->CallStack[mach->CallStackTop].SwitchStackTop = mach->SwitchStackTop;
3737 mach->CallStack[mach->CallStackTop].BreakStackTop = mach->BreakStackTop;
3739 mach->CallStack[mach->CallStackTop].ReturnAddr = *pc;
3781 mach->CondStackTop = mach->CallStack[mach->CallStackTop].CondStackTop;
3784 mach->LoopStackTop = mach->CallStack[mach->CallStackTop].LoopStackTop;
3787 mach->ContStackTop = mach->CallStack[mach->CallStackTop].ContStackTop;
3790 mach->SwitchStackTop = mach->CallStack[mac
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTracingTimelineModel.js90 CallStack: "CallStack",
515 case recordTypes.CallStack:
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp2232 /// CallStack - This is used to detect recursion. In pathological situations
2235 SmallVector<Function*, 4> CallStack; member in class:__anon26228::Evaluator
2625 if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
2628 CallStack.push_back(F);
2659 CallStack.pop_back();

Completed in 259 milliseconds