Searched refs:outLength (Results 1 - 3 of 3) sorted by relevance

/openjdk9/jdk/src/jdk.crypto.ucrypto/solaris/native/libj2ucrypto/
H A DnativeCrypto.c253 size_t outLength; local
255 outLength = (size_t) *outLen;
261 rv = (*ftab->ucryptoEncryptUpdate)(context, (unsigned char*)(bufIn+inOfs), (size_t)inLen, (unsigned char*)(bufOut+outOfs), &outLength);
265 *outLen = (int)outLength;
268 rv = (*ftab->ucryptoDecryptUpdate)(context, (unsigned char*)(bufIn+inOfs), (size_t)inLen, (unsigned char*)(bufOut+outOfs), &outLength);
272 if (J2UC_DEBUG) printBytes("BufOut=", (unsigned char*)(bufOut+outOfs), outLength);
273 *outLen = (int)outLength;
284 size_t outLength; local
286 outLength = (size_t)*outLen;
290 rv = (*ftab->ucryptoEncryptFinal)(context, (unsigned char*)(bufOut+outOfs), &outLength);
1247 size_t outLength = (size_t) jOutLen; local
[all...]
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DHangulLayoutEngine.cpp318 le_int32 outLength = outCharCount - outStart; local
331 if ((inLength >= 1 && inLength <= 3) && (outLength == 2 || outLength == 3)) {
335 LEUnicode trail = outLength == 3? outChars[outStart + 2] : TJMO_FIRST;
341 if (compose(lead, vowel, trail, syllable) == outLength) {
/openjdk9/jdk/src/java.base/share/classes/java/util/
H A DBase64.java237 private final int outLength(int srclen) { method in class:Base64.Encoder
261 int len = outLength(src.length); // dst array size
289 int len = outLength(src.length); // dst array size
334 int len = outLength(buffer.remaining());
525 byte[] dst = new byte[outLength(src, 0, src.length)];
578 int len = outLength(src, 0, src.length);
622 byte[] dst = new byte[outLength(src, sp, sl)];
650 private int outLength(byte[] src, int sp, int sl) { method in class:Base64.Decoder

Completed in 100 milliseconds