Searched refs:outbuf (Results 1 - 19 of 19) sorted by relevance

/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DBASE64EncoderStream.java202 byte[] outbuf = new byte[((inbuf.length + 2) / 3) * 4];
211 outbuf[outpos++] = (byte)pem_array[(a >>> 2) & 0x3F];
212 outbuf[outpos++] =
214 outbuf[outpos++] = (byte)'='; // pad character
215 outbuf[outpos++] = (byte)'='; // pad character
220 outbuf[outpos++] = (byte)pem_array[(a >>> 2) & 0x3F];
221 outbuf[outpos++] =
223 outbuf[outpos++] =
225 outbuf[outpos++] = (byte)'='; // pad character
230 outbuf[outpo
[all...]
H A DBASE64DecoderStream.java224 byte[] outbuf = new byte[size];
233 outbuf[outpos++] = (byte)(((a << 2) & 0xfc) | ((b >>> 4) & 3));
236 return outbuf;
240 outbuf[outpos++] = (byte)(((a << 4) & 0xf0) | ((b >>> 2) & 0xf));
243 return outbuf;
247 outbuf[outpos++] = (byte)(((a << 6) & 0xc0) | (b & 0x3f));
250 return outbuf;
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DBASE64DecoderStream.java230 * @param outbuf the buffer into which to put the decoded bytes
237 private int decode(byte[] outbuf, int pos, int len) throws IOException { argument
325 outbuf[pos + 1] = (byte)(val & 0xff);
328 outbuf[pos] = (byte)(val & 0xff);
341 outbuf[pos + 2] = (byte)(val & 0xff);
343 outbuf[pos + 1] = (byte)(val & 0xff);
345 outbuf[pos] = (byte)(val & 0xff);
437 byte[] outbuf = new byte[size];
460 outbuf[outpos + 2] = (byte)(val & 0xff);
464 outbuf[outpo
[all...]
/openjdk9/jdk/src/java.base/share/classes/java/security/
H A DSignatureSpi.java187 * bytes in the provided buffer {@code outbuf}, starting at
202 * @param outbuf buffer for the signature result.
204 * @param offset offset into {@code outbuf} where the signature is
207 * @param len number of bytes within {@code outbuf} allotted for the
216 * @return the number of bytes placed into {@code outbuf}
225 protected int engineSign(byte[] outbuf, int offset, int len) argument
232 if (outbuf.length - offset < sig.length) {
237 System.arraycopy(sig, 0, outbuf, offset, sig.length);
H A DSignature.java606 * bytes in the provided buffer {@code outbuf}, starting at
615 * @param outbuf buffer for the signature result.
617 * @param offset offset into {@code outbuf} where the signature is
620 * @param len number of bytes within {@code outbuf} allotted for the
623 * @return the number of bytes placed into {@code outbuf}.
629 * @exception IllegalArgumentException if {@code outbuf} is {@code null},
632 * {@code outbuf}.
636 public final int sign(byte[] outbuf, int offset, int len) argument
638 if (outbuf == null) {
644 if (outbuf
1237 engineSign(byte[] outbuf, int offset, int len) argument
[all...]
/openjdk9/jdk/src/java.instrument/unix/native/libinstrument/
H A DEncodingSupport_md.c135 char *outbuf; local
138 outbuf = output;
141 returnValue = iconv(ic, (void*)&inbuf, &inLeft, &outbuf, &outLeft);
/openjdk9/jdk/src/java.desktop/share/native/libawt/awt/image/cvutils/
H A Dimg_globals.h90 void *outbuf; member in struct:__anon838
H A Dimg_output8_16_32.h51 dstP.vp = cvdata->outbuf; \
H A Dimg_output8_32.h50 dstP.vp = cvdata->outbuf; \
H A Dimg_output16_32.h50 dstP.vp = cvdata->outbuf; \
H A Dimg_output24.h43 dstP.vp = cvdata->outbuf; \
H A Dimg_output32.h42 dstP.vp = cvdata->outbuf; \
H A Dimg_output8.h41 dstP.vp = cvdata->outbuf; \
H A Dimg_output16.h42 dstP.vp = cvdata->outbuf; \
H A Dimg_output8_16_24.h57 dstP.vp = cvdata->outbuf; \
/openjdk9/jdk/src/java.desktop/share/native/libjavajpeg/
H A Djpegdecoder.c182 } outbuf; member in struct:sun_jpeg_source_mgr
215 if (src->outbuf.ip) {
217 src->outbuf.ip, 0);
218 src->outbuf.ip = 0;
236 assert(src->outbuf.ip == 0);
238 src->outbuf.ip = (int *)(*env)->GetPrimitiveArrayCritical
240 if (src->outbuf.ip == 0) {
527 jsrc.outbuf.ip = 0;
673 (void) jpeg_read_scanlines(&cinfo, (JSAMPARRAY) &(jsrc.outbuf), 1);
682 ip = jsrc.outbuf
[all...]
/openjdk9/jdk/src/jdk.crypto.ucrypto/solaris/classes/com/oracle/security/ucrypto/
H A DNativeRSASignature.java275 protected synchronized int engineSign(byte[] outbuf, int offset, int len) argument
279 if (outbuf == null || (offset < 0) || (outbuf.length < (offset + sigLength))
284 int rv = doFinal(outbuf, offset, sigLength);
/openjdk9/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
H A Dutf_util.c468 char *inbuf, *outbuf; local
510 outbuf = output;
514 bytes_converted = iconv(func, (void*)&inbuf, &inLeft, &outbuf, &outLeft);
/openjdk9/jdk/test/javax/xml/ws/8043129/
H A Djavax.mail.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/mail/ com/sun/mail/imap/ ...

Completed in 140 milliseconds