Lines Matching refs:outSize
518 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;
660 outSize = xmlSecBufferGetSize(out);
717 - ret = xmlSecBufferSetMaxSize(out, outSize + 2 * blockLen);
720 + if( xmlSecBufferSetMaxSize( out , outSize + inSize + blockSize ) < 0 ) {
725 - "size=%d", outSize + 2 * blockLen);
730 outBuf = xmlSecBufferGetData(out) + outSize;
764 - ret = xmlSecBufferSetSize(out, outSize + outLen);
770 - "size=%d", outSize + outLen);
779 + if( xmlSecBufferSetMaxSize( out , outSize + blockSize ) < 0 ) {
916 + outBuf = xmlSecBufferGetData( out ) + outSize ;
927 + if( xmlSecBufferSetSize( out , outSize + outLen ) < 0 ) {