Lines Matching refs:bsize
75 unsigned int bsize) in blkcipher_done_slow() argument
80 addr = blkcipher_get_spot(addr, bsize); in blkcipher_done_slow()
81 scatterwalk_copychunks(addr, &walk->out, bsize, 1); in blkcipher_done_slow()
82 return bsize; in blkcipher_done_slow()
149 unsigned int bsize, in blkcipher_next_slow() argument
153 unsigned aligned_bsize = ALIGN(bsize, alignmask + 1); in blkcipher_next_slow()
171 walk->dst.virt.addr = blkcipher_get_spot(walk->dst.virt.addr, bsize); in blkcipher_next_slow()
173 aligned_bsize, bsize); in blkcipher_next_slow()
175 scatterwalk_copychunks(walk->src.virt.addr, &walk->in, bsize, 0); in blkcipher_next_slow()
177 walk->nbytes = bsize; in blkcipher_next_slow()
227 unsigned int bsize; in blkcipher_walk_next() local
249 bsize = min(walk->walk_blocksize, n); in blkcipher_walk_next()
253 if (unlikely(n < bsize)) { in blkcipher_walk_next()
254 err = blkcipher_next_slow(desc, walk, bsize, walk->alignmask); in blkcipher_walk_next()