Lines Matching refs:this_len
238 static inline bool n2_should_run_async(struct spu_queue *qp, int this_len)
240 if (this_len >= 64 ||
835 int this_len = nbytes; in cipher_descriptor_len() local
837 this_len -= (nbytes & (block_size - 1)); in cipher_descriptor_len()
838 return this_len > (1 << 16) ? (1 << 16) : this_len; in cipher_descriptor_len()
919 int this_len; in n2_compute_chunks() local
926 this_len = cipher_descriptor_len(nbytes, walk->blocksize); in n2_compute_chunks()
933 tot_len + this_len > (1 << 16)) { in n2_compute_chunks()
950 chunk->arr[chunk->arr_len].src_len = this_len; in n2_compute_chunks()
953 dest_prev = dest_paddr + this_len; in n2_compute_chunks()
955 tot_len += this_len; in n2_compute_chunks()
957 err = ablkcipher_walk_done(req, walk, nbytes - this_len); in n2_compute_chunks()