Lines Matching refs:out

367 			crypto_data_t out;
369 out.cd_format = CRYPTO_DATA_RAW;
370 out.cd_offset = 0;
371 out.cd_length = out_len;
372 out.cd_raw.iov_base = (char *)out_buf;
373 out.cd_raw.iov_len = out_len;
379 (char *)in_buf, out_len, &out);
406 crypto_data_t out;
408 out.cd_format = CRYPTO_DATA_RAW;
409 out.cd_offset = 0;
410 out.cd_length = out_len;
411 out.cd_raw.iov_base = (char *)out_buf;
412 out.cd_raw.iov_len = out_len;
417 (char *)in_buf, out_len, &out);
449 out.cd_offset = out_len;
450 out.cd_length = AES_BLOCK_LEN;
451 out.cd_raw.iov_base = (char *)out_buf;
452 out.cd_raw.iov_len = out_len + AES_BLOCK_LEN;
457 (char *)tmpblock, AES_BLOCK_LEN, &out);
474 crypto_data_t out;
476 out.cd_format = CRYPTO_DATA_RAW;
477 out.cd_offset = 0;
478 out.cd_length = *pulEncryptedLen;
479 out.cd_raw.iov_base = (char *)pEncrypted;
480 out.cd_raw.iov_len = *pulEncryptedLen;
483 (char *)pData, ulDataLen, &out);
741 crypto_data_t out;
743 out.cd_format = CRYPTO_DATA_RAW;
744 out.cd_offset = 0;
745 out.cd_length = out_len;
746 out.cd_raw.iov_base = (char *)out_buf;
747 out.cd_raw.iov_len = out_len;
753 (char *)in_buf, out_len, &out);
781 crypto_data_t out;
785 out.cd_format = CRYPTO_DATA_RAW;
786 out.cd_offset = 0;
787 out.cd_length = out_len;
788 out.cd_raw.iov_base = (char *)out_buf;
789 out.cd_raw.iov_len = out_len;
794 (char *)in_buf, out_len, &out);
804 out.cd_offset = 0;
805 out.cd_length = AES_BLOCK_LEN;
806 out.cd_raw.iov_base = (char *)last_block;
807 out.cd_raw.iov_len = AES_BLOCK_LEN;
812 (char *)in_buf + out_len, AES_BLOCK_LEN, &out);
862 crypto_data_t out;
864 out.cd_format = CRYPTO_DATA_RAW;
865 out.cd_offset = 0;
866 out.cd_length = *pulDataLen;
867 out.cd_raw.iov_base = (char *)pData;
868 out.cd_raw.iov_len = *pulDataLen;
871 (char *)pEncrypted, ulEncryptedLen, &out);