/external/angle/src/compiler/translator/tree_ops/d3d/ |
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 | 2669 TIntermTyped* rightNode = binaryNode->getRight(); in lValueErrorCheck() local 2670 TIntermAggregate *aggrNode = rightNode->getAsAggregate(); in lValueErrorCheck()
|
/external/angle/third_party/vulkan-deps/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 | 2876 TIntermTyped* rightNode = binaryNode->getRight(); in lValueErrorCheck() local 2877 TIntermAggregate *aggrNode = rightNode->getAsAggregate(); in lValueErrorCheck()
|
/external/angle/src/compiler/translator/TranslatorMetalDirect/ |
D | RewriteUnaddressableReferences.cpp | 340 TIntermTyped &rightNode = *binaryNode.getRight(); in visitBinaryPre() local 343 TIntermTyped &newRight = traverse(rightNode, disableRight); in visitBinaryPre() 347 if (&leftNode == &newLeft && &rightNode == &newRight) in visitBinaryPre()
|
D | EmitMetal.cpp | 1478 TIntermTyped &rightNode = *binaryNode->getRight(); in visitBinary() local 1485 const TField &field = getDirectField(leftNode, rightNode); in visitBinary() 1508 groupedTraverse(rightNode); in visitBinary() 1538 const TType &rightType = rightNode.getType(); in visitBinary() 1552 groupedTraverse(rightNode); in visitBinary() 1560 rightNode.traverse(this); in visitBinary() 2030 TIntermNode &rightNode = *aggregateNode->getChildNode(1); in visitAggregate() local 2033 groupedTraverse(rightNode); in visitAggregate()
|
/external/angle/src/compiler/translator/tree_util/ |
D | IntermNode_util.cpp | 199 TIntermBinary *CreateTempAssignmentNode(const TVariable *tempVariable, TIntermTyped *rightNode) in CreateTempAssignmentNode() argument 201 ASSERT(rightNode != nullptr); in CreateTempAssignmentNode() 203 return new TIntermBinary(EOpAssign, tempSymbol, rightNode); in CreateTempAssignmentNode()
|
D | IntermNode_util.h | 38 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/deqp-deps/glslang/glslang/HLSL/ |
D | hlslGrammar.cpp | 2770 TIntermTyped* rightNode = nullptr; in acceptExpression() local 2771 if (! acceptAssignmentExpression(rightNode)) { in acceptExpression() 2776 node = intermediate.addComma(node, rightNode, loc); in acceptExpression() 2879 TIntermTyped* rightNode = nullptr; in acceptAssignmentExpression() local 2880 if (! acceptAssignmentExpression(rightNode)) { in acceptAssignmentExpression() 2885 node = parseContext.handleAssign(loc, assignOp, node, rightNode); in acceptAssignmentExpression() 2977 TIntermTyped* rightNode = nullptr; in acceptBinaryExpression() local 2978 if (! acceptBinaryExpression(rightNode, (PrecedenceLevel)(precedenceLevel + 1))) { in acceptBinaryExpression() 2983 node = intermediate.addBinaryMath(op, node, rightNode, loc); in acceptBinaryExpression()
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/HLSL/ |
D | hlslGrammar.cpp | 2772 TIntermTyped* rightNode = nullptr; in acceptExpression() local 2773 if (! acceptAssignmentExpression(rightNode)) { in acceptExpression() 2778 node = intermediate.addComma(node, rightNode, loc); in acceptExpression() 2881 TIntermTyped* rightNode = nullptr; in acceptAssignmentExpression() local 2882 if (! acceptAssignmentExpression(rightNode)) { in acceptAssignmentExpression() 2887 node = parseContext.handleAssign(loc, assignOp, node, rightNode); in acceptAssignmentExpression() 2979 TIntermTyped* rightNode = nullptr; in acceptBinaryExpression() local 2980 if (! acceptBinaryExpression(rightNode, (PrecedenceLevel)(precedenceLevel + 1))) { in acceptBinaryExpression() 2985 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()
|