/external/angle/src/compiler/translator/tree_ops/ |
D | RewriteExpressionsWithShaderStorageBlock.cpp | 189 TIntermTyped *rightNode = in visitBinary() local 196 new TIntermBinary(node->getOp(), tempSymbol->deepCopy(), rightNode->deepCopy()); in visitBinary() 208 new TIntermBinary(node->getOp(), node->getLeft(), rightNode->deepCopy()); in visitBinary() 223 TIntermTyped *rightNode = node->getRight(); in visitBinary() local 228 rightNode = insertInitStatementAndReturnTempSymbol(node->getRight(), &insertions); in visitBinary() 237 new TIntermBinary(node->getOp(), leftNode->deepCopy(), rightNode->deepCopy()); in visitBinary()
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/deflate64/ |
D | HuffmanDecoder.java | 364 node = bit == 0 ? node.leftNode : node.rightNode; in nextSymbol() 413 BinaryTreeNode rightNode; field in HuffmanDecoder.BinaryTreeNode 422 rightNode = null; in leaf() 433 if (rightNode == null && literal == -1) { in right() 434 rightNode = new BinaryTreeNode(bits + 1); in right() 436 return rightNode; in right()
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | XMPUtilsImpl.java | 744 private static boolean itemValuesMatch(XMPNode leftNode, XMPNode rightNode) throws XMPException in itemValuesMatch() argument 747 PropertyOptions rightForm = rightNode.getOptions(); in itemValuesMatch() 757 if (!leftNode.getValue().equals(rightNode.getValue())) in itemValuesMatch() 761 if (leftNode.getOptions().getHasLanguage() != rightNode.getOptions().getHasLanguage()) in itemValuesMatch() 767 rightNode.getQualifier(1).getValue())) in itemValuesMatch() 776 if (leftNode.getChildrenLength() != rightNode.getChildrenLength()) in itemValuesMatch() 784 XMPNode rightField = XMPNodeUtils.findChildNode(rightNode, leftField.getName(), in itemValuesMatch() 806 for (Iterator ir = rightNode.iterateChildren(); ir.hasNext();) in itemValuesMatch()
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | Constant.cpp | 112 const TIntermConstantUnion *rightNode = rightConstantNode->getAsConstantUnion(); in fold() local 114 TConstUnionArray rightUnionArray = rightNode->getConstArray(); in fold() 121 newComps = rightNode->getMatrixCols() * getMatrixRows(); in fold() 127 newComps = rightNode->getMatrixCols(); in fold() 134 TConstUnionArray smearedArray(newComps, rightNode->getConstArray()[0]); in fold() 139 rightUnionArray = rightNode->getConstArray(); in fold() 142 returnType.shallowCopy(rightNode->getType()); in fold() 168 for (int column = 0; column < rightNode->getMatrixCols(); column++) { in fold() 170 for (int i = 0; i < rightNode->getMatrixRows(); i++) in fold() 171 …Array[i * getMatrixRows() + row].getDConst() * rightUnionArray[column * rightNode->getMatrixRows()… in fold() [all …]
|
D | ParseHelper.cpp | 2606 TIntermTyped* rightNode = binaryNode->getRight(); in lValueErrorCheck() local 2607 TIntermAggregate *aggrNode = rightNode->getAsAggregate(); in lValueErrorCheck()
|
/external/angle/third_party/glslang/src/glslang/MachineIndependent/ |
D | Constant.cpp | 112 const TIntermConstantUnion *rightNode = rightConstantNode->getAsConstantUnion(); in fold() local 114 TConstUnionArray rightUnionArray = rightNode->getConstArray(); in fold() 121 newComps = rightNode->getMatrixCols() * getMatrixRows(); in fold() 127 newComps = rightNode->getMatrixCols(); in fold() 134 TConstUnionArray smearedArray(newComps, rightNode->getConstArray()[0]); in fold() 139 rightUnionArray = rightNode->getConstArray(); in fold() 142 returnType.shallowCopy(rightNode->getType()); in fold() 168 for (int column = 0; column < rightNode->getMatrixCols(); column++) { in fold() 170 for (int i = 0; i < rightNode->getMatrixRows(); i++) in fold() 171 …Array[i * getMatrixRows() + row].getDConst() * rightUnionArray[column * rightNode->getMatrixRows()… in fold() [all …]
|
D | ParseHelper.cpp | 2563 TIntermTyped* rightNode = binaryNode->getRight(); in lValueErrorCheck() local 2564 TIntermAggregate *aggrNode = rightNode->getAsAggregate(); in lValueErrorCheck()
|
/external/angle/src/compiler/translator/tree_util/ |
D | IntermNode_util.cpp | 190 TIntermBinary *CreateTempAssignmentNode(const TVariable *tempVariable, TIntermTyped *rightNode) in CreateTempAssignmentNode() argument 192 ASSERT(rightNode != nullptr); in CreateTempAssignmentNode() 194 return new TIntermBinary(EOpAssign, tempSymbol, rightNode); in CreateTempAssignmentNode()
|
D | IntermNode_util.h | 37 TIntermBinary *CreateTempAssignmentNode(const TVariable *tempVariable, TIntermTyped *rightNode);
|
/external/dagger2/java/dagger/example/spi/ |
D | BindingGraphVisualizer.java | 203 DotEdge(Object leftNode, Object rightNode) { in DotEdge() argument 204 super(quote(leftNode.toString()) + " -> " + quote(rightNode.toString())); in DotEdge()
|
/external/angle/third_party/glslang/src/hlsl/ |
D | hlslGrammar.cpp | 2757 TIntermTyped* rightNode = nullptr; in acceptExpression() local 2758 if (! acceptAssignmentExpression(rightNode)) { in acceptExpression() 2763 node = intermediate.addComma(node, rightNode, loc); in acceptExpression() 2866 TIntermTyped* rightNode = nullptr; in acceptAssignmentExpression() local 2867 if (! acceptAssignmentExpression(rightNode)) { in acceptAssignmentExpression() 2872 node = parseContext.handleAssign(loc, assignOp, node, rightNode); in acceptAssignmentExpression() 2964 TIntermTyped* rightNode = nullptr; in acceptBinaryExpression() local 2965 if (! acceptBinaryExpression(rightNode, (PrecedenceLevel)(precedenceLevel + 1))) { in acceptBinaryExpression() 2970 node = intermediate.addBinaryMath(op, node, rightNode, loc); in acceptBinaryExpression()
|
/external/deqp-deps/glslang/hlsl/ |
D | hlslGrammar.cpp | 2757 TIntermTyped* rightNode = nullptr; in acceptExpression() local 2758 if (! acceptAssignmentExpression(rightNode)) { in acceptExpression() 2763 node = intermediate.addComma(node, rightNode, loc); in acceptExpression() 2866 TIntermTyped* rightNode = nullptr; in acceptAssignmentExpression() local 2867 if (! acceptAssignmentExpression(rightNode)) { in acceptAssignmentExpression() 2872 node = parseContext.handleAssign(loc, assignOp, node, rightNode); in acceptAssignmentExpression() 2964 TIntermTyped* rightNode = nullptr; in acceptBinaryExpression() local 2965 if (! acceptBinaryExpression(rightNode, (PrecedenceLevel)(precedenceLevel + 1))) { in acceptBinaryExpression() 2970 node = intermediate.addBinaryMath(op, node, rightNode, loc); in acceptBinaryExpression()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | ExpressionTranslator.java | 357 PExpression rightNode) { in infix() argument 359 JavaExpression right = cast(srcType, rightNode); in infix()
|
/external/swiftshader/src/OpenGL/compiler/ |
D | ParseHelper.cpp | 321 TIntermTyped* rightNode = binaryNode->getRight(); in lValueErrorCheck() local 322 TIntermAggregate *aggrNode = rightNode->getAsAggregate(); in lValueErrorCheck()
|