Home
last modified time | relevance | path

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

/third_party/node/deps/v8/tools/profview/
Dprofile-utils.js142 function findNextFrame(file, stack, stackPos, step, filter) { argument
145 while (stackPos >= 0 && stackPos < stack.length) {
146 codeId = stack[stackPos];
152 if (filter(type, kind)) return stackPos;
154 stackPos += step;
159 function addOrUpdateChildNode(parent, file, stackIndex, stackPos, ascending) { argument
160 if (stackPos === -1) {
170 console.assert(stackPos >= 0 && stackPos < stack.length);
171 let codeId = stack[stackPos];
183 addFrameToFrameList(child.delayedExpansion.frameList, stackIndex, stackPos);
[all …]
/third_party/vk-gl-cts/framework/common/
DtcuCommandLine.cpp456 int stackPos = 0; in parseSimpleCaseList() local
468 if (!nodeStack[stackPos]->hasChild(curName)) in parseSimpleCaseList()
474 nodeStack[stackPos]->addChild(newChild); in parseSimpleCaseList()
486 stackPos = 0; in parseSimpleCaseList()
503 if ((int)nodeStack.size() <= stackPos+1) in parseSimpleCaseList()
506 if (!nodeStack[stackPos+1] || nodeStack[stackPos+1]->getName() != curName) in parseSimpleCaseList()
508 CaseTreeNode* curGroup = nodeStack[stackPos]->getChild(curName); in parseSimpleCaseList()
516 nodeStack[stackPos]->addChild(curGroup); in parseSimpleCaseList()
525 nodeStack[stackPos+1] = curGroup; in parseSimpleCaseList()
527 if ((int)nodeStack.size() > stackPos+2) in parseSimpleCaseList()
[all …]
/third_party/skia/third_party/externals/angle2/src/tests/deqp_support/
DtcuRandomOrderExecutor.cpp114 const size_t stackPos = compNdx + 1; in seekToCase() local
116 if (stackPos >= m_nodeStack.size()) in seekToCase()
118 else if (components[compNdx] != m_nodeStack[stackPos].node->getName()) in seekToCase()
121 pruneStack(stackPos); in seekToCase()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Disassembler/
DX86Disassembler.cpp2205 uint8_t stackPos) { in translateFPRegister() argument
2206 mcInst.addOperand(MCOperand::createReg(X86::ST0 + stackPos)); in translateFPRegister()