Searched defs:decode (Results 51 - 75 of 123) sorted by relevance

12345

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DBranchDecoder.java59 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:BranchDecoder
H A DFloatDecoder.java59 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:FloatDecoder
66 rs1 = RegisterDecoder.decode(src1Type, rs1Num);
72 SPARCRegister rd = RegisterDecoder.decode(resultType, rdNum);
73 SPARCRegister rs2 = RegisterDecoder.decode(src2Type, rs2Num);
H A DInstructionDecoder.java79 abstract Instruction decode(int instruction, SPARCInstructionFactory factory); method in class:InstructionDecoder
H A DMemoryInstructionDecoder.java67 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:MemoryInstructionDecoder
79 SPARCRegister rd = RegisterDecoder.decode(dataType, rdNum);
H A DSPARCDisassembler.java48 return callDecoder.decode(instruction, factory);
56 return decoder.decode(instruction, factory);
83 return getFormat3Decoder(row, column).decode(instruction, factory);
93 return getFormat3ADecoder(row, column).decode(instruction, factory);
96 public void decode(InstructionVisitor visitor) { method in class:SPARCDisassembler
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86Disassembler.java1503 public void decode(InstructionVisitor visitor) { method in class:X86Disassembler
1549 instr = instrDecoder.decode(code, byteIndex, instrStartIndex, segmentOverride, prefixes, factory);
/openjdk7/hotspot/src/os/windows/vm/
H A Ddecoder_windows.hpp49 bool decode(address addr, char *buf, int buflen, int* offset, const char* modulepath = NULL);
50 bool decode(address addr, char *buf, int buflen, int* offset, const void* base) { function in class:WindowsDecoder
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder.cpp83 bool Decoder::decode(address addr, char* buf, int buflen, int* offset, const char* modulepath) { function in class:Decoder
91 return decoder->decode(addr, buf, buflen, offset, modulepath);
94 bool Decoder::decode(address addr, char* buf, int buflen, int* offset, const void* base) { function in class:Decoder
102 return decoder->decode(addr, buf, buflen, offset, base);
H A DelfFile.cpp143 bool ElfFile::decode(address addr, char* buf, int buflen, int* offset) { function in class:ElfFile
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DSwACodec.java59 protected void decode(MimeMultipartParser mpp, Packet packet) throws IOException { method in class:SwACodec
63 ((RootOnlyCodec)rootCodec).decode(root.asInputStream(),root.getContentType(),packet, new MimeAttachmentSet(mpp));
65 rootCodec.decode(root.asInputStream(),root.getContentType(),packet);
H A DMimeCodec.java57 * the "sniffer" can decode a multipart message partially, and then
176 public void decode(InputStream in, String contentType, Packet packet) throws IOException { method in class:MimeCodec
178 decode(parser,packet);
181 public void decode(ReadableByteChannel in, String contentType, Packet packet) { method in class:MimeCodec
188 protected abstract void decode(MimeMultipartParser mpp, Packet packet) throws IOException; method in class:MimeCodec
H A DStreamSOAP12Codec.java80 public void decode(InputStream in, String contentType, Packet packet, AttachmentSet att ) throws IOException { method in class:StreamSOAP12Codec
83 super.decode(in,contentType,packet,att);
/openjdk7/jdk/test/java/io/
H A DUnicode.java104 static void decode(String enc, int byteOrder, boolean markit) method in class:Unicode
147 decode(enc, byteOrder, markExpected);
148 decode(enc, byteOrder, markExpected);
/openjdk7/jdk/test/sun/nio/cs/
H A DUkrainianIsNotRussian.java33 private static String decode(byte[] bytes, String encoding) throws Throwable { method in class:UkrainianIsNotRussian
45 final String r = decode(bytes, "KOI8_R");
46 final String u = decode(bytes, "KOI8_U");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DBASE64DecoderStream.java75 decode(); // Fills up buffer
157 private void decode() throws IOException { method in class:BASE64DecoderStream
198 * Base64 decode a byte array. No line breaks are allowed.
200 * in the IMAP AUTHENTICATE protocol, but not to decode the
206 public static byte[] decode(byte[] inbuf) { method in class:BASE64DecoderStream
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DBase64.java32 * This class provides encode/decode for RFC 2045 Base64 as
180 public byte[] decode( byte[] base64Data ) { method in class:Base64
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/xml/
H A DXMLCodec.java88 public void decode(InputStream in, String contentType, Packet packet) throws IOException { method in class:XMLCodec
93 public void decode(ReadableByteChannel in, String contentType, Packet packet) { method in class:XMLCodec
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DConstants.java48 public static Object decode(Object value, Type type) { method in class:Constants
66 value = decode(value, type);
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS8Key.java72 * by using <code>decode</code>.
154 * and <code>decode</code>.
334 public void decode(InputStream in) throws InvalidKeyException method in class:PKCS8Key
366 public void decode(byte[] encodedKey) throws InvalidKeyException { method in class:PKCS8Key
367 decode(new ByteArrayInputStream(encodedKey));
385 decode(stream);
H A DPKCS9Attributes.java98 // derEncoding initialized in <code>decode()</code>
99 derEncoding = decode(in);
139 // derEncoding initialized in <code>decode()</code>
140 derEncoding = decode(in);
186 private byte[] decode(DerInputStream in) throws IOException { method in class:PKCS9Attributes
/openjdk7/jdk/test/java/security/Identity/
H A DEqualsHashCodeContract.java99 public void decode(InputStream stream) { method in class:MyPublicKey
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DUnicodeDecoder.java60 private char decode(int b1, int b2) { method in class:UnicodeDecoder
92 char c = decode(b1, b2);
104 char c2 = decode(src.get() & 0xff, src.get() & 0xff);
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DSolarisAclFileAttributeView.java200 private static List<AclEntry> decode(long address, int n) { method in class:SolarisAclFileAttributeView
316 // read ACL and decode it
319 return decode(address, n);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/util/
H A DBase64.java24 * This class provides encode/decode for RFC 2045 Base64 as
31 * This implementation does not encode/decode streaming
32 * data. You need the data that you will encode/decode
200 public static byte[] decode(String encoded) { method in class:Base64
/openjdk7/jdk/src/share/classes/java/lang/
H A DByte.java268 * @param nm the {@code String} to decode.
275 public static Byte decode(String nm) throws NumberFormatException { method in class:Byte
276 int i = Integer.decode(nm);

Completed in 152 milliseconds

12345