Home
last modified time | relevance | path

Searched refs:loopNestingLevel (Results 1 – 7 of 7) sorted by relevance

/external/deqp-deps/glslang/glslang/MachineIndependent/
DParseHelper.h85 … statementNestingLevel(0), loopNestingLevel(0), structNestingLevel(0), controlFlowNestingLevel(0), in TParseVersions()
173 int loopNestingLevel; // 0 if outside all loops variable
Dglslang.y3565 ++parseContext.loopNestingLevel;
3572 --parseContext.loopNestingLevel;
3577 ++parseContext.loopNestingLevel;
3588 --parseContext.loopNestingLevel;
3594 ++parseContext.loopNestingLevel;
3606 --parseContext.loopNestingLevel;
3643 if (parseContext.loopNestingLevel <= 0)
3648 if (parseContext.loopNestingLevel + parseContext.switchSequenceStack.size() <= 0)
Dglslang_tab.cpp9858 ++parseContext.loopNestingLevel; in yyparse()
9870 --parseContext.loopNestingLevel; in yyparse()
9880 ++parseContext.loopNestingLevel; in yyparse()
9896 --parseContext.loopNestingLevel; in yyparse()
9907 ++parseContext.loopNestingLevel; in yyparse()
9924 --parseContext.loopNestingLevel; in yyparse()
9984 if (parseContext.loopNestingLevel <= 0) in yyparse()
9994 if (parseContext.loopNestingLevel + parseContext.switchSequenceStack.size() <= 0) in yyparse()
DParseHelper.cpp1020 loopNestingLevel = 0; in handleFunctionDefinition()
/external/deqp-deps/glslang/hlsl/
DhlslParseHelper.h166 void nestLooping() { ++loopNestingLevel; } in nestLooping()
167 void unnestLooping() { --loopNestingLevel; } in unnestLooping()
DhlslGrammar.cpp3861 if (parseContext.loopNestingLevel == 0) { in acceptJumpStatement()
3868 if (parseContext.loopNestingLevel == 0 && parseContext.switchSequenceStack.size() == 0) { in acceptJumpStatement()
DhlslParseHelper.cpp1731 loopNestingLevel = 0; in handleFunctionDefinition()