Home
last modified time | relevance | path

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

/external/angle/src/compiler/translator/tree_ops/d3d/
DRewriteExpressionsWithShaderStorageBlock.cpp193 TIntermSymbol *tempSymbol = in visitBinary() local
196 new TIntermBinary(node->getOp(), tempSymbol->deepCopy(), rightNode->deepCopy()); in visitBinary()
201 new TIntermBinary(EOpAssign, node->getLeft(), tempSymbol->deepCopy()); in visitBinary()
323 TIntermSymbol *tempSymbol = insertInitStatementAndReturnTempSymbol(node, &insertions); in visitAggregate() local
329 queueReplacement(tempSymbol->deepCopy(), OriginalNode::IS_DROPPED); in visitAggregate()
/external/angle/src/compiler/translator/tree_util/
DIntermNode_util.cpp192 TIntermSymbol *tempSymbol = CreateTempSymbolNode(tempVariable); in CreateTempInitDeclarationNode() local
194 TIntermBinary *tempInit = new TIntermBinary(EOpInitialize, tempSymbol, initializer); in CreateTempInitDeclarationNode()
202 TIntermSymbol *tempSymbol = CreateTempSymbolNode(tempVariable); in CreateTempAssignmentNode() local
203 return new TIntermBinary(EOpAssign, tempSymbol, rightNode); in CreateTempAssignmentNode()