Searched defs:outbuf (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DSignatureSpi.java186 * bytes in the provided buffer <code>outbuf</code>, starting at
201 * @param outbuf buffer for the signature result.
203 * @param offset offset into <code>outbuf</code> where the signature is
206 * @param len number of bytes within <code>outbuf</code> allotted for the
215 * @return the number of bytes placed into <code>outbuf</code>
224 protected int engineSign(byte[] outbuf, int offset, int len) argument
231 if (outbuf.length - offset < sig.length) {
236 System.arraycopy(sig, 0, outbuf, offset, sig.length);
H A DSignature.java561 * bytes in the provided buffer <code>outbuf</code>, starting at
570 * @param outbuf buffer for the signature result.
572 * @param offset offset into <code>outbuf</code> where the signature is
575 * @param len number of bytes within <code>outbuf</code> allotted for the
578 * @return the number of bytes placed into <code>outbuf</code>.
587 public final int sign(byte[] outbuf, int offset, int len) argument
589 if (outbuf == null) {
592 if (outbuf.length - offset < len) {
600 return engineSign(outbuf, offset, len);
1163 protected int engineSign(byte[] outbuf, in argument
[all...]
/openjdk7/jdk/src/solaris/npt/
H A Dutf_md.c115 char *outbuf; local
118 outbuf = output;
121 returnValue = iconv(ic, (void*)&inbuf, &inLeft, &outbuf, &outLeft);
/openjdk7/jdk/src/solaris/instrument/
H A DEncodingSupport_md.c130 char *outbuf; local
133 outbuf = output;
136 returnValue = iconv(ic, (void*)&inbuf, &inLeft, &outbuf, &outLeft);
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A Dimg_globals.h90 void *outbuf; member in struct:__anon681
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djpegdecoder.c176 } outbuf; member in struct:sun_jpeg_source_mgr
208 if (src->outbuf.ip) {
210 src->outbuf.ip, 0);
211 src->outbuf.ip = 0;
229 assert(src->outbuf.ip == 0);
230 src->outbuf.ip = (int *)(*env)->GetPrimitiveArrayCritical
232 if (src->outbuf.ip == 0) {
516 jsrc.outbuf.ip = 0;
662 (void) jpeg_read_scanlines(&cinfo, (JSAMPARRAY) &(jsrc.outbuf), 1);
671 ip = jsrc.outbuf
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dgzio.c86 Byte *outbuf; /* output buffer */ member in struct:gz_stream
139 s->stream.next_out = s->outbuf = Z_NULL;
183 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
185 if (err != Z_OK || s->outbuf == Z_NULL) {
270 s->stream.next_out = s->outbuf;
271 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
408 TRYFREE(s->outbuf);
599 s->stream.next_out = s->outbuf;
600 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
745 if ((uInt)fwrite(s->outbuf,
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngtest.c816 char inbuf[256], outbuf[256]; local
1488 num_out = fread(outbuf, 1, 1, fpout);
1516 if (png_memcmp(inbuf, outbuf, num_in))

Completed in 44 milliseconds