Home
last modified time | relevance | path

Searched refs:typedNode (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DParseHelper.cpp2185 TIntermTyped* typedNode; in addConstVectorNode() local
2220 typedNode = intermediate.addConstantUnion(constArray, type, line); in addConstVectorNode()
2221 return typedNode; in addConstVectorNode()
2232 TIntermTyped* typedNode; in addConstMatrixNode() local
2247typedNode = intermediate.addConstantUnion(&unionArray[size*index], tempConstantNode->getType(), li… in addConstMatrixNode()
2255 return typedNode; in addConstMatrixNode()
2267 TIntermTyped* typedNode; in addConstArrayNode() local
2285typedNode = intermediate.addConstantUnion(&unionArray[arrayElementSize * index], tempConstantNode-… in addConstArrayNode()
2293 return typedNode; in addConstArrayNode()
2305 TIntermTyped *typedNode; in addConstStruct() local
[all …]
/external/deqp-deps/glslang/glslang/MachineIndependent/
DIntermediate.cpp3585 TIntermTyped* typedNode = operands[i]->getAsTyped(); in propagatePrecision() local
3586 if (! typedNode) in propagatePrecision()
3588 typedNode->propagatePrecision(newPrecision); in propagatePrecision()
3596 TIntermTyped* typedNode = selectionNode->getTrueBlock()->getAsTyped(); in propagatePrecision() local
3597 if (typedNode) { in propagatePrecision()
3598 typedNode->propagatePrecision(newPrecision); in propagatePrecision()
3599 typedNode = selectionNode->getFalseBlock()->getAsTyped(); in propagatePrecision()
3600 if (typedNode) in propagatePrecision()
3601 typedNode->propagatePrecision(newPrecision); in propagatePrecision()