Searched defs:toByteArray (Results 1 - 25 of 36) sorted by relevance

12

/openjdk7/jdk/test/vm/verifier/
H A DVerifyStackForExceptionHandlers.java75 byte cf_bytes[] = toByteArray(cls_data);
116 byte cf_bytes[] = toByteArray(cls_data);
124 static private byte[] toByteArray(long arr[]) { method in class:VerifyStackForExceptionHandlers
H A DVerifyProtectedConstructor.java73 byte cf_bytes[] = toByteArray(cls_data);
103 byte cf_bytes[] = toByteArray(cls_data);
122 static private byte[] toByteArray(long arr[]) { method in class:VerifyProtectedConstructor
/openjdk7/jdk/src/share/classes/java/text/
H A DCollationKey.java127 abstract public byte[] toByteArray(); method in class:CollationKey
H A DRuleBasedCollationKey.java102 public byte[] toByteArray() { method in class:RuleBasedCollationKey
/openjdk7/jdk/test/sun/security/pkcs11/SecureRandom/
H A DTestDeserialization.java54 byte[] ser = toByteArray(r);
66 private byte[] toByteArray(SecureRandom r) throws Exception { method in class:TestDeserialization
72 return out.toByteArray();
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/CTR/
H A DCounterMode.java41 private final static byte[] toByteArray(String s) { method in class:CounterMode
86 toByteArray("2b7e151628aed2a6abf7158809cf4f3c"),
87 toByteArray("8e73b0f7da0e6452c810f32b809079e562f8ead2522c6b7b"),
88 toByteArray("603deb1015ca71be2b73aef0857d77811f352c073b6108d72d9810a30914dff4"),
89 toByteArray("2b7e151628aed2a6abf7158809cf4f3c"),
90 toByteArray("2b7e151628aed2a6abf7158809cf4f3c"),
91 toByteArray("2b7e151628aed2a6"),
92 toByteArray("874d6191b620e326"),
93 toByteArray("8e73b0f7da0e6452c810f32b809079e562f8ead2522c6b7b"),
94 toByteArray("87
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DTag.java60 public byte[] toByteArray() { method in class:Tag
71 return os.toByteArray();
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DBigInt.java63 byte[] temp = i.toByteArray();
139 public byte[] toByteArray() { return places.clone(); } method in class:BigInt
181 byte[] otherPlaces = other.toByteArray();
H A DBitArray.java169 public byte[] toByteArray() { method in class:BitArray
262 return new String(out.toByteArray());
H A DDerInputBuffer.java64 byte[] toByteArray() { method in class:DerInputBuffer
H A DDerInputStream.java147 public byte[] toByteArray() { method in class:DerInputStream
148 return buffer.toByteArray();
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/CTS/
H A DCTSMode.java39 private final static byte[] toByteArray(String s) { method in class:CTSMode
70 new SecretKeySpec(toByteArray("636869636b656e207465726979616b69"),
82 toByteArray("4920776f756c64206c696b652074686520"),
83 toByteArray("4920776f756c64206c696b6520746865" +
85 toByteArray("4920776f756c64206c696b6520746865" +
87 toByteArray("4920776f756c64206c696b6520746865" +
90 toByteArray("4920776f756c64206c696b6520746865" +
93 toByteArray("4920776f756c64206c696b6520746865" +
99 toByteArray("c6353568f2bf8cb4d8a580362da7ff7f97"),
100 toByteArray("fc00783e0efdb2c1d445d4c8eff7ed2
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DByteArrayOutputStream.java34 * The data can be retrieved using <code>toByteArray()</code> and
177 public synchronized byte toByteArray()[] { method in class:ByteArrayOutputStream
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DUnsyncByteArrayOutputStream.java72 public byte[] toByteArray() { method in class:UnsyncByteArrayOutputStream
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DPacket.java53 public byte[] toByteArray() { method in class:Packet
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DMemoryClassLoader.java72 byte[] array = mc.toByteArray();
119 byte[] toByteArray() { method in class:MemoryClassLoader.Output
120 return this.baos.toByteArray();
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDSAParameterGenerator.java203 byte[] U2 = SHA(toByteArray((SEED.add(ONE)).mod(TWOG)));
228 V[k] = new BigInteger(1, SHA(toByteArray(tmp)));
286 * Converts the result of a BigInteger.toByteArray call to an exact
289 private byte[] toByteArray(BigInteger bigInt) { method in class:DSAParameterGenerator
290 byte[] result = bigInt.toByteArray();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DByteOutputStream.java144 public byte toByteArray()[] { method in class:ByteOutputStream
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DByteArrayBuffer.java166 public final byte[] toByteArray() { method in class:ByteArrayBuffer
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSACore.java59 * this BigInteger. Do not count a 0x00 byte toByteArray() would
114 return toByteArray(c, getByteLength(n));
172 return toByteArray(m, getByteLength(n));
192 private static byte[] toByteArray(BigInteger bi, int len) { method in class:RSACore
193 byte[] b = bi.toByteArray();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DMarshalOutputStream.java88 public byte[] toByteArray(); method in interface:MarshalOutputStream
/openjdk7/jdk/src/share/classes/java/util/
H A DBitSet.java279 * <br>{@code byte[] bytes = s.toByteArray();}
288 public byte[] toByteArray() { method in class:BitSet
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFloatConverter.java91 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatLSBFilter
93 byte[] ret = converter.toByteArray(in_buff, in_offset, in_len,
156 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion64L
208 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion64B
257 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion32L
294 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion32B
327 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion8S
349 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion8U
379 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion16SL
405 public byte[] toByteArray(floa method in class:AudioFloatConverter.AudioFloatConversion16SB
431 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion16UL
457 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion16UB
492 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion24SL
524 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion24SB
555 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion24UL
585 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion24UB
621 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion32SL
651 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion32SB
682 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion32UL
715 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion32UB
760 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion32xSL
802 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion32xSB
844 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion32xUL
887 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter.AudioFloatConversion32xUB
1036 public abstract byte[] toByteArray(float[] in_buff, int in_offset, method in class:AudioFloatConverter
1039 public final byte[] toByteArray(float[] in_buff, int in_len, method in class:AudioFloatConverter
1044 public final byte[] toByteArray(float[] in_buff, int in_offset, int in_len, method in class:AudioFloatConverter
1049 public final byte[] toByteArray(float[] in_buff, int in_len, method in class:AudioFloatConverter
1054 public final byte[] toByteArray(float[] in_buff, byte[] out_buff) { method in class:AudioFloatConverter
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DPrincipalName.java467 public byte[][] toByteArray() { method in class:PrincipalName
555 return temp.toByteArray();
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Signature.java657 outseq.toByteArray());
658 return result.toByteArray();
670 byte[] br = toByteArray(r, 20);
671 byte[] bs = toByteArray(s, 20);
690 byte[] br = P11Util.trimZeroes(r.toByteArray());
691 byte[] bs = P11Util.trimZeroes(s.toByteArray());
703 private static byte[] toByteArray(BigInteger bi, int len) { method in class:P11Signature
704 byte[] b = bi.toByteArray();

Completed in 117 milliseconds

12