Lines Matching refs:input
1726 /* Skip the space used by the input buffer */
1907 /* first the input */
1980 /* Clear the input chain */
2000 * Build either input chain or output chain. It is single-item chain for Sparc,
2234 /* input buffer address */
2237 /* next input buffer entry */
2240 /* input buffer length */
2747 dca_dupcrypto(crypto_data_t *input, crypto_data_t *ninput)
2749 ninput->cd_format = input->cd_format;
2750 ninput->cd_offset = input->cd_offset;
2751 ninput->cd_length = input->cd_length;
2752 ninput->cd_miscdata = input->cd_miscdata;
2754 switch (input->cd_format) {
2756 ninput->cd_raw.iov_base = input->cd_raw.iov_base;
2757 ninput->cd_raw.iov_len = input->cd_raw.iov_len;
2761 ninput->cd_uio = input->cd_uio;
2765 ninput->cd_mp = input->cd_mp;
2778 * Performs validation checks on the input and output data structures.
2781 dca_verifyio(crypto_data_t *input, crypto_data_t *output)
2785 switch (input->cd_format) {
2791 if (input->cd_uio->uio_segflg != UIO_SYSSPACE) {
2792 DBG(NULL, DWARN, "non kernel input uio buffer");
2801 DBG(NULL, DWARN, "unrecognised input crypto data format");
2952 * Performs the input, output or hard scatter/gather checks on the specified