Lines Matching refs:out
532 /* Encrypts a contiguous input 'in' into the 'out' crypto_data_t */
535 crypto_arcfour_crypt(ARCFour_key *key, uchar_t *in, crypto_data_t *out,
538 switch (out->cd_format) {
541 start = (uchar_t *)(out->cd_raw.iov_base +
542 out->cd_offset);
544 end = (uchar_t *)(out->cd_raw.iov_base +
545 out->cd_raw.iov_len);
547 if (start + out->cd_length > end)
557 mblk_t *mp = out->cd_mp, *mp1, *mp2;
561 mp1 = advance_position(mp, out->cd_offset, &start);
566 mp2 = advance_position(mp, out->cd_offset +
567 out->cd_length, &end);
589 uio_t *uiop = out->cd_uio;
590 off_t offset = out->cd_offset;