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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DUUIDEncodingAlgorithm.java38 public final int getPrimtiveLengthFromOctetLength(int octetLength) throws EncodingAlgorithmException { argument
39 if (octetLength % (LONG_SIZE * 2) != 0) {
44 return octetLength / LONG_SIZE;
H A DHexadecimalEncodingAlgorithm.java128 public final int getPrimtiveLengthFromOctetLength(int octetLength) throws EncodingAlgorithmException { argument
129 return octetLength * 2;
H A DShortEncodingAlgorithm.java49 public final int getPrimtiveLengthFromOctetLength(int octetLength) throws EncodingAlgorithmException { argument
50 if (octetLength % SHORT_SIZE != 0) {
55 return octetLength / SHORT_SIZE;
H A DBooleanEncodingAlgorithm.java64 public int getPrimtiveLengthFromOctetLength(int octetLength) throws EncodingAlgorithmException { argument
194 public int getPrimtiveLengthFromOctetLength(int octetLength, int firstOctet) throws EncodingAlgorithmException { argument
196 if (octetLength == 1) {
205 return octetLength * 8 - 4 - unusedBits;
H A DBuiltInEncodingAlgorithm.java39 public abstract int getPrimtiveLengthFromOctetLength(int octetLength) throws EncodingAlgorithmException; argument
H A DBASE64EncodingAlgorithm.java188 public final int getPrimtiveLengthFromOctetLength(int octetLength) throws EncodingAlgorithmException { argument
189 return octetLength;
H A DDoubleEncodingAlgorithm.java44 public final int getPrimtiveLengthFromOctetLength(int octetLength) throws EncodingAlgorithmException { argument
45 if (octetLength % DOUBLE_SIZE != 0) {
50 return octetLength / DOUBLE_SIZE;
H A DFloatEncodingAlgorithm.java44 public final int getPrimtiveLengthFromOctetLength(int octetLength) throws EncodingAlgorithmException { argument
45 if (octetLength % FLOAT_SIZE != 0) {
50 return octetLength / FLOAT_SIZE;
H A DIntEncodingAlgorithm.java44 public final int getPrimtiveLengthFromOctetLength(int octetLength) throws EncodingAlgorithmException { argument
45 if (octetLength % INT_SIZE != 0) {
50 return octetLength / INT_SIZE;
H A DLongEncodingAlgorithm.java43 public int getPrimtiveLengthFromOctetLength(int octetLength) throws EncodingAlgorithmException { argument
44 if (octetLength % LONG_SIZE != 0) {
49 return octetLength / LONG_SIZE;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DEncoder.java1518 final int octetLength = BuiltInEncodingAlgorithmFactory.getAlgorithm(id).
1521 encodeNonZeroOctetStringLengthOnFifthBit(octetLength);
1523 ensureSize(octetLength);
1526 _octetBufferIndex += octetLength;
1747 final int octetLength = BuiltInEncodingAlgorithmFactory.getAlgorithm(id).
1750 encodeNonZeroOctetStringLengthOnSenventhBit(octetLength);
1752 ensureSize(octetLength);
1755 _octetBufferIndex += octetLength;

Completed in 2168 milliseconds