Searched refs:base64TaleLength (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DStAXDocumentParser.java1706 private int base64TaleLength; field in class:StAXDocumentParser
1716 if (base64TaleLength > 0) {
1718 int bytesToCopy = Math.min(3 - base64TaleLength, _algorithmDataLength);
1719 System.arraycopy(_algorithmData, _algorithmDataOffset, base64TaleBytes, base64TaleLength, bytesToCopy);
1720 if (base64TaleLength + bytesToCopy == 3) {
1724 base64DecodeWithCloning(buffer, base64TaleBytes, 0, base64TaleLength + bytesToCopy);
1728 base64TaleLength += bytesToCopy;
1733 base64TaleLength = 0;
1749 base64TaleLength = taleBytesRemaining;

Completed in 453 milliseconds