Lines Matching defs:nbytes
108 unsigned int nbytes = min_t(u64, len, wa->bytes_left);
114 wa->sg_used += nbytes;
115 wa->bytes_left -= nbytes;
301 unsigned int buf_count, nbytes;
311 * nbytes will always be <= UINT_MAX because dm_wa->length is
314 nbytes = min_t(u64, sg_wa->bytes_left, dm_wa->length);
316 nbytes, from);
321 nbytes = min(sg_dma_len(sg_wa->dma_sg) - sg_wa->sg_used,
323 nbytes = min_t(u64, sg_wa->bytes_left, nbytes);
325 buf_count += nbytes;
326 ccp_update_sg_workarea(sg_wa, nbytes);
801 unsigned int nbytes = ilen % AES_BLOCK_SIZE;
803 if (nbytes) {
805 op.u.aes.size = (nbytes * 8) - 1;