Home
last modified time | relevance | path

Searched refs:outSize (Results 1 – 3 of 3) sorted by relevance

/AOO41X/main/libxmlsec/
H A Dxmlsec1-nssmangleciphers.patch518 xmlSecSize inSize, inBlocks, outSize;
549 outSize = xmlSecBufferGetSize(out);
571 - ret = xmlSecBufferSetMaxSize(out, outSize + inSize + blockLen);
573 + if( xmlSecBufferSetMaxSize( out , outSize + inSize + blockSize ) < 0 ) {
578 - "size=%d", outSize + inSize + blockLen);
583 outBuf = xmlSecBufferGetData(out) + outSize;
599 - ret = xmlSecBufferSetSize(out, outSize + outLen);
601 + if( xmlSecBufferSetSize( out , outSize + outLen ) < 0 ) {
606 - "size=%d", outSize + outLen);
629 xmlSecSize inSize, outSize;
[all …]
H A Dxmlsec1-customkeymanage.patch2513 + xmlSecByte *out, xmlSecSize outSize)
2522 + xmlSecAssert2(outSize >= SHA1_LENGTH, NULL);
2555 + s = PK11_DigestFinal(context, out, &len, outSize);
2584 + xmlSecSize outSize ,
2602 + xmlSecAssert2(outSize >= inSize, -1);
2631 + rv = PK11_CipherOp(EncContext, out, &tmp1_outlen, outSize,
2643 + &tmp2_outlen, outSize-tmp1_outlen);
2677 + xmlSecSize outSize;
2692 + outSize = xmlSecBufferGetMaxSize(result) ;
2723 + out, outSize, 1);
[all …]
/AOO41X/main/javaunohelper/com/sun/star/lib/uno/adapter/
H A DInputStreamToXInputStreamAdapter.java129 int outSize = bytesRead > 0 ? (int)bytesRead : 0; in readSomeBytes() local
130 byte[] out = new byte[outSize]; in readSomeBytes()
131 System.arraycopy(b[0], 0, out, 0, outSize); in readSomeBytes()