Lines Matching refs:out
99 * CKR_HOST_MEMORY: run out of system memory
585 crypto_data_t out;
598 out.cd_format = CRYPTO_DATA_RAW;
599 out.cd_offset = 0;
600 out.cd_length = out_len;
601 out.cd_raw.iov_base = (char *)pLastEncryptedPart;
602 out.cd_raw.iov_len = out_len;
607 (char *)pLastEncryptedPart, out_len, &out);
680 crypto_data_t out;
693 out.cd_format = CRYPTO_DATA_RAW;
694 out.cd_offset = 0;
695 out.cd_length = out_len;
696 out.cd_raw.iov_base = (char *)pLastEncryptedPart;
697 out.cd_raw.iov_len = out_len;
702 (char *)pLastEncryptedPart, out_len, &out);
748 crypto_data_t out;
762 out.cd_format = CRYPTO_DATA_RAW;
763 out.cd_offset = 0;
764 out.cd_length = len;
765 out.cd_raw.iov_base = (char *)pLastEncryptedPart;
766 out.cd_raw.iov_len = len;
768 rv = ctr_mode_final(ctr_ctx, &out, aes_encrypt_block);