Lines Matching refs:this_len
241 static inline bool n2_should_run_async(struct spu_queue *qp, int this_len)
243 if (this_len >= 64 ||
794 int this_len = nbytes; in skcipher_descriptor_len() local
796 this_len -= (nbytes & (block_size - 1)); in skcipher_descriptor_len()
797 return this_len > (1 << 16) ? (1 << 16) : this_len; in skcipher_descriptor_len()
878 int this_len; in n2_compute_chunks() local
885 this_len = skcipher_descriptor_len(nbytes, walk->blocksize); in n2_compute_chunks()
892 tot_len + this_len > (1 << 16)) { in n2_compute_chunks()
909 chunk->arr[chunk->arr_len].src_len = this_len; in n2_compute_chunks()
912 dest_prev = dest_paddr + this_len; in n2_compute_chunks()
914 tot_len += this_len; in n2_compute_chunks()
916 err = skcipher_walk_done(walk, nbytes - this_len); in n2_compute_chunks()