Searched refs:output (Results 151 - 175 of 456) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharEUC.java51 public int flush(char[] output, int outStart, int outEnd) argument
76 char[] output, int outOff, int outEnd)
139 output[charOff++] = outputChar;
75 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
H A DCharToByteASCII.java38 public int flush(byte[] output, int outStart, int outEnd) argument
54 byte[] output, int outOff, int outEnd)
60 byte[] outputByte; // Output byte written to output
63 int outputSize; // Size of output
148 // If we don't have room for the output, throw an exception
152 // Put the byte in the output buffer
154 output[byteOff++] = outputByte[i];
159 // Return the length written to the output buffer
53 convert(char[] input, int inOff, int inEnd, byte[] output, int outOff, int outEnd) argument
H A DCharToByteEUC_TW.java38 public int flush(byte[] output, int outStart, int outEnd) argument
57 byte[] output, int outOff, int outEnd)
92 output[byteOff++] = outputByte[i];
56 convert(char[] input, int inOff, int inEnd, byte[] output, int outOff, int outEnd) argument
H A DByteToCharGB18030.java71 public int flush(char [] output, int outStart, int outEnd) argument
89 char[] output, int outOff, int outEnd)
130 // Is there room in the output buffer for the result?
212 output[charOff++] = (char)(byte1);
215 output[charOff++] = super.getUnicode(byte1, byte2);
230 output[charOff++] = getChar(offset);
232 output[charOff++] = (char) (offset + 0x5543);
234 output[charOff++] = getChar(offset);
236 output[charOff++] = (char) (offset + 0x6557);
238 output[charOf
88 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
[all...]
H A DByteToCharJISAutoDetect.java60 public int flush(char [] output, int outStart, int outEnd) argument
65 return detectedConv.flush(output, outStart, outEnd);
67 return defaultConv.flush(output, outStart, outEnd);
75 char[] output, int outOff, int outEnd)
109 output[charOff++] = (char) byte1;
197 output, outOff + num, outEnd);
206 output, outOff + num, outEnd);
74 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
H A DByteToCharDoubleByte.java69 public int flush(char[] output, int outStart, int outEnd) argument
85 * @return the characters written to output.
89 * @param output character array to receive conversion result
96 char[] output, int outOff, int outEnd)
150 output[charOff++] = outputChar;
95 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
/openjdk7/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A Dbatch.sh41 refv11dir=./ref-v1.1-output
42 refvcompatdir=./ref-vcompat-output
43 refv12dir=./ref-v1.2-output
45 newv11dir=./new-v1.1-output
46 newvcompatdir=./new-vcompat-output
47 newv12dir=./new-v1.2-output
87 echo "TEST PASSED: new rmic output identical to reference rmic output"
/openjdk7/jdk/test/sun/security/krb5/canonicalize/
H A DTest.java57 static void check(String input, String output) throws Exception { argument
58 System.out.println(input + " -> " + output);
61 if (!pn.getNameStrings()[1].equals(output)) {
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformsopt.hpp120 void output(FILE *fp); // Write info to output files
153 void output(FILE *fp); // Write info to output files
185 void output(FILE *fp); // Write info to output files
205 void output(FILE *fp); // Write info to output files
241 void output(FILE *fp); // Write info to output file
[all...]
H A Dformssel.hpp173 virtual uint two_address(FormDict &globals); // output reg must match input reg
303 virtual void output(FILE *fp); // Write to output files
326 void output(FILE *fp); // Write info to output files
370 void output(FILE *fp);
388 void output(FILE *fp); // Write info to output files
416 void output(FILE *fp);
461 void output(FIL
[all...]
/openjdk7/jdk/test/javax/crypto/CipherSpi/
H A DDirectBBRemaining.java72 boolean output = (size % outputFrequency) == 0;
73 if (output) {
85 output);
110 boolean output) throws Exception {
121 if (output) {
161 // validate output size
164 "incomplete encryption output, expected "
169 // validate output data
173 throw new Exception("bad encryption output");
107 encrypt(Cipher cipher, int size, ByteBuffer heapIn, ByteBuffer heapOut, ByteBuffer directIn, ByteBuffer directOut, boolean output) argument
/openjdk7/jdk/test/sun/net/idn/
H A DPunycodeTest.java51 "input or output is too large, recompile with larger limits\n";
75 StringBuffer output;
111 output = Punycode.encode((new StringBuffer()).append(input, 0, input_length), case_flags);
119 return output.toString();
125 StringBuffer output;
140 output = Punycode.decode((new StringBuffer()).append(input, 0, input_length), case_flags);
149 for (j = 0; j < output.length(); ++j) {
152 (int)output.charAt(j) ));
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/dk/
H A DAesDkCrypto.java67 * | HMAC output size, h 12 octets (96 bits) |
173 byte[] output = new byte[hashSize];
174 System.arraycopy(hash, 0, output, 0, hashSize);
175 return output;
240 byte[] output = encryptCTS(baseKey, usage, ivec, new_ivec, plaintext,
242 return output;
256 byte[] output = encryptCTS(baseKey, usage, ivec, null, plaintext,
258 return output;
272 byte[] output = decryptCTS(baseKey, usage, ivec, ciphertext,
274 return output;
[all...]
/openjdk7/jdk/src/share/npt/
H A Dutf.c51 * Returns length or -1 if output overflows.
54 utf8ToUtf16(struct UtfInst *ui, jbyte *utf8, int len, unsigned short *output, int outputMaxLen) argument
61 UTF_ASSERT(output);
82 output[outputLen++] = code;
89 * Returns length or -1 if output overflows.
92 utf16ToUtf8m(struct UtfInst *ui, unsigned short *utf16, int len, jbyte *output, int outputMaxLen) argument
99 UTF_ASSERT(output);
108 output[outputLen++] = code;
110 output[outputLen++] = ((code>>6) & 0x1F) | 0xC0;
111 output[outputLe
126 utf16ToUtf8s(struct UtfInst *ui, unsigned short *utf16, int len, jbyte *output, int outputMaxLen) argument
400 bytesToPrintable(struct UtfInst *ui, char *bytes, int len, char *output, int outputMaxLen) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DTlsPrfGenerator.java190 byte[] output = new byte[outputLength];
209 seed, output, ipad, opad);
211 return output;
244 byte[] output = new byte[outputLength];
247 expand(md5, 16, secret, 0, seclen, labelBytes, seed, output,
251 expand(sha, 20, secret, off, seclen, labelBytes, seed, output,
254 return output;
265 * @param output the output array
269 byte[] output, byt
267 expand(MessageDigest digest, int hmacSize, byte[] secret, int secOff, int secLen, byte[] label, byte[] seed, byte[] output, byte[] pad1, byte[] pad2) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DBridgeImpl.java47 import com.sun.xml.internal.bind.v2.runtime.output.SAXOutput;
48 import com.sun.xml.internal.bind.v2.runtime.output.XMLStreamWriterOutput;
77 public void marshal(Marshaller _m, T t, XMLStreamWriter output) throws JAXBException { argument
79 m.write(tagName,bi,t,XMLStreamWriterOutput.create(output,context),new StAXPostInitAction(output,m.serializer));
82 public void marshal(Marshaller _m, T t, OutputStream output, NamespaceContext nsContext) throws JAXBException { argument
89 m.write(tagName,bi,t,m.createWriter(output),pia);
92 public void marshal(Marshaller _m, T t, Node output) throws JAXBException { argument
94 m.write(tagName,bi,t,new SAXOutput(new SAX2DOMEx(output)),new DomPostInitAction(output,
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DDes.java161 byte[] output = new byte[8];
163 output[i] = (byte)((input >>> ((7 - i) * 8)) & 0xffL);
165 return output;
168 public static void long2octet(long input, byte[] output) { argument
169 long2octet(input, output, 0);
172 public static void long2octet(long input, byte[] output, int offset) { argument
174 if (i + offset < output.length) {
175 output[i + offset] =
184 * @param output the buffer for the result.
192 byte[] output,
190 cbc_encrypt( byte[] input, byte[] output, byte[] key, byte[] ivec, boolean encrypt) argument
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DKhmerReordering.cpp389 KhmerReorderingOutput output(outChars, glyphStorage);
399 output.reset();
411 output.writeChar(C_VOWEL_E, i, tagPref);
417 output.writeChar(chars[i], i, tagPref);
434 output.writeChar(C_COENG, coengRo, tagPref);
435 output.writeChar(C_RO, coengRo + 1, tagPref);
443 output.writeChar(C_DOTTED_CIRCLE, prev, tagDefault);
446 // copy what is left to the output, skipping before vowels and coeng Ro if they are present
463 output.writeChar(chars[i], i, tagAbvf);
467 output
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformBase64Decode.java68 * The output of this transform is an octet stream.</p>
122 XMLSignatureInput output=new XMLSignatureInput((byte[])null);
123 output.setOutputStream(os);
124 return output;
141 XMLSignatureInput output=new XMLSignatureInput((byte[])null);
142 output.setOutputStream(os);
143 return output;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DBase64Data.java41 import com.sun.xml.internal.bind.v2.runtime.output.Pcdata;
42 import com.sun.xml.internal.bind.v2.runtime.output.UTF8XmlOutput;
296 public void writeTo(UTF8XmlOutput output) throws IOException { argument
299 output.text(data, dataLen);
302 public void writeTo(XMLStreamWriter output) throws IOException, XMLStreamException { argument
304 DatatypeConverterImpl._printBase64Binary(data, 0, dataLen, output);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/jaxb/
H A DMarshallerBridge.java57 public void marshal(Marshaller m, Object object, XMLStreamWriter output) throws JAXBException { argument
60 m.marshal(object,output);
66 public void marshal(Marshaller m, Object object, OutputStream output, NamespaceContext nsContext) throws JAXBException { argument
69 ((MarshallerImpl)m).marshal(object,output,nsContext);
75 public void marshal(Marshaller m, Object object, Node output) throws JAXBException { argument
78 m.marshal(object,output);
/openjdk7/jdk/test/javax/crypto/Cipher/
H A DByteBuffersNull.java169 byte[] output, int outputOffset)
180 byte[] output, int outputOffset)
201 public int engineDoFinal(ByteBuffer input, ByteBuffer output) argument
204 return super.engineDoFinal(input, output);
207 public int engineUpdate(ByteBuffer input, ByteBuffer output) argument
209 return super.engineUpdate(input, output);
168 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
179 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticFramework.hpp233 DCmd(outputStream* output, bool heap_allocated) { argument
234 _output = output;
253 outputStream* output() { return _output; } function in class:DCmd
256 output()->print_cr("Syntax: %s", name);
289 DCmdWithParser (outputStream *output, bool heap=false) : DCmd(output, heap) { } argument
351 virtual DCmd* create_Cheap_instance(outputStream* output) = 0;
352 virtual DCmd* create_resource_instance(outputStream* output) = 0;
380 virtual DCmd* create_Cheap_instance(outputStream* output) { argument
381 return new (ResourceObj::C_HEAP, mtInternal) DCmdClass(output, tru
384 create_resource_instance(outputStream* output) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DXMLWriter.java34 package com.sun.xml.internal.txw2.output;
82 * a simple XML document to standard output:</p>
284 * The output destination, or null to use standard output.
306 * @param writer The output destination, or null to use
307 * standard output.
328 * to make sure that no output is lost.</p>
336 * the selected output writer.</p>
348 * Flush the output.
350 * <p>This method flushes the output strea
1060 private Writer output; field in class:XMLWriter
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DTestPRF.java46 private static int PREFIX_LENGTH = "prf-output: ".length();
61 byte[] output = null;
82 } else if (line.startsWith("prf-output:")) {
83 output = parse(data);
102 if (Arrays.equals(output, enc) == false) {

Completed in 121 milliseconds

1234567891011>>