Searched refs:rightNode (Results 1 – 7 of 7) sorted by relevance
/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 | 2372 TIntermTyped* rightNode = binaryNode->getRight(); in lValueErrorCheck() local 2373 TIntermAggregate *aggrNode = rightNode->getAsAggregate(); in lValueErrorCheck()
|
/external/deqp-deps/glslang/hlsl/ |
D | hlslGrammar.cpp | 2755 TIntermTyped* rightNode = nullptr; in acceptExpression() local 2756 if (! acceptAssignmentExpression(rightNode)) { in acceptExpression() 2761 node = intermediate.addComma(node, rightNode, loc); in acceptExpression() 2864 TIntermTyped* rightNode = nullptr; in acceptAssignmentExpression() local 2865 if (! acceptAssignmentExpression(rightNode)) { in acceptAssignmentExpression() 2870 node = parseContext.handleAssign(loc, assignOp, node, rightNode); in acceptAssignmentExpression() 2962 TIntermTyped* rightNode = nullptr; in acceptBinaryExpression() local 2963 if (! acceptBinaryExpression(rightNode, (PrecedenceLevel)(precedenceLevel + 1))) { in acceptBinaryExpression() 2968 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()
|