Searched defs:encodeByte (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DBase64Encoder.java50 public static byte encodeByte( int i ) { method in class:Base64Encoder
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DBerEncoder.java135 encodeByte(tag);
198 public void encodeByte(int b) { method in class:BerEncoder
310 encodeByte(tag);
348 encodeByte(tag);
404 encodeByte(0x05);
405 encodeByte(0x00);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DDatatypeConverterImpl.java558 public static byte encodeByte(int i) { method in class:DatatypeConverterImpl
664 buf[ptr++] = encodeByte(input[i]>>2);
665 buf[ptr++] = encodeByte(
668 buf[ptr++] = encodeByte(
671 buf[ptr++] = encodeByte(input[i+2]&0x3F);
675 buf[ptr++] = encodeByte(input[i]>>2);
676 buf[ptr++] = encodeByte(((input[i])&0x3)<<4);
682 buf[ptr++] = encodeByte(input[i]>>2);
683 buf[ptr++] = encodeByte(
686 buf[ptr++] = encodeByte((inpu
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DDatatypeConverterImpl.java757 public static byte encodeByte(int i) { method in class:DatatypeConverterImpl
828 buf[ptr++] = encodeByte(input[i]>>2);
829 buf[ptr++] = encodeByte(
832 buf[ptr++] = encodeByte(
835 buf[ptr++] = encodeByte(input[i+2]&0x3F);
839 buf[ptr++] = encodeByte(input[i]>>2);
840 buf[ptr++] = encodeByte(((input[i])&0x3)<<4);
846 buf[ptr++] = encodeByte(input[i]>>2);
847 buf[ptr++] = encodeByte(
850 buf[ptr++] = encodeByte((inpu
[all...]

Completed in 46 milliseconds