Lines Matching refs:out

52 -							 xmlSecBufferPtr out,
58 - xmlSecBufferPtr out,
64 - xmlSecBufferPtr out,
332 xmlSecBufferPtr in, xmlSecBufferPtr out,
355 xmlSecAssert2(out != NULL, -1);
404 - ret = xmlSecBufferAppend(out, ctx->iv, ivLen);
406 + if( xmlSecBufferAppend( out , ivBuf->data , ivLen ) < 0 ) {
514 xmlSecBufferPtr in, xmlSecBufferPtr out,
534 xmlSecAssert2(out != NULL, -1);
549 outSize = xmlSecBufferGetSize(out);
570 - /* we write out the input size plus may be one block */
571 - ret = xmlSecBufferSetMaxSize(out, outSize + inSize + blockLen);
573 + if( xmlSecBufferSetMaxSize( out , outSize + inSize + blockSize ) < 0 ) {
583 outBuf = xmlSecBufferGetData(out) + outSize;
599 - ret = xmlSecBufferSetSize(out, outSize + outLen);
601 + if( xmlSecBufferSetSize( out , outSize + outLen ) < 0 ) {
645 xmlSecAssert2(out != NULL, -1);
660 outSize = xmlSecBufferGetSize(out);
717 - ret = xmlSecBufferSetMaxSize(out, outSize + 2 * blockLen);
720 + if( xmlSecBufferSetMaxSize( out , outSize + inSize + blockSize ) < 0 ) {
730 outBuf = xmlSecBufferGetData(out) + outSize;
764 - ret = xmlSecBufferSetSize(out, outSize + outLen);
779 + if( xmlSecBufferSetMaxSize( out , outSize + blockSize ) < 0 ) {
916 + outBuf = xmlSecBufferGetData( out ) + outSize ;
927 + if( xmlSecBufferSetSize( out , outSize + outLen ) < 0 ) {
1031 - xmlSecBufferPtr in, out;
1040 - out = &(transform->outBuf);
1056 - ret = xmlSecNssBlockCipherCtxInit(ctx, in, out,
1084 - ret = xmlSecNssBlockCipherCtxUpdate(ctx, in, out,
1102 - ret = xmlSecNssBlockCipherCtxFinal(ctx, in, out,