Lines Matching refs:this_len
233 static inline bool n2_should_run_async(struct spu_queue *qp, int this_len)
235 if (this_len >= 64 ||
820 int this_len = nbytes; in cipher_descriptor_len() local
822 this_len -= (nbytes & (block_size - 1)); in cipher_descriptor_len()
823 return this_len > (1 << 16) ? (1 << 16) : this_len; in cipher_descriptor_len()
904 int this_len; in n2_compute_chunks() local
911 this_len = cipher_descriptor_len(nbytes, walk->blocksize); in n2_compute_chunks()
918 tot_len + this_len > (1 << 16)) { in n2_compute_chunks()
935 chunk->arr[chunk->arr_len].src_len = this_len; in n2_compute_chunks()
938 dest_prev = dest_paddr + this_len; in n2_compute_chunks()
940 tot_len += this_len; in n2_compute_chunks()
942 err = ablkcipher_walk_done(req, walk, nbytes - this_len); in n2_compute_chunks()