Lines Matching refs:this_len
239 static inline bool n2_should_run_async(struct spu_queue *qp, int this_len)
241 if (this_len >= 64 ||
827 int this_len = nbytes; in cipher_descriptor_len() local
829 this_len -= (nbytes & (block_size - 1)); in cipher_descriptor_len()
830 return this_len > (1 << 16) ? (1 << 16) : this_len; in cipher_descriptor_len()
911 int this_len; in n2_compute_chunks() local
918 this_len = cipher_descriptor_len(nbytes, walk->blocksize); in n2_compute_chunks()
925 tot_len + this_len > (1 << 16)) { in n2_compute_chunks()
942 chunk->arr[chunk->arr_len].src_len = this_len; in n2_compute_chunks()
945 dest_prev = dest_paddr + this_len; in n2_compute_chunks()
947 tot_len += this_len; in n2_compute_chunks()
949 err = ablkcipher_walk_done(req, walk, nbytes - this_len); in n2_compute_chunks()