Lines Matching refs:bsize
69 unsigned int bsize) in blkcipher_done_slow() argument
74 addr = blkcipher_get_spot(addr, bsize); in blkcipher_done_slow()
75 scatterwalk_copychunks(addr, &walk->out, bsize, 1); in blkcipher_done_slow()
141 unsigned int bsize, in blkcipher_next_slow() argument
145 unsigned aligned_bsize = ALIGN(bsize, alignmask + 1); in blkcipher_next_slow()
163 walk->dst.virt.addr = blkcipher_get_spot(walk->dst.virt.addr, bsize); in blkcipher_next_slow()
165 aligned_bsize, bsize); in blkcipher_next_slow()
167 scatterwalk_copychunks(walk->src.virt.addr, &walk->in, bsize, 0); in blkcipher_next_slow()
169 walk->nbytes = bsize; in blkcipher_next_slow()
219 unsigned int bsize; in blkcipher_walk_next() local
229 bsize = min(walk->walk_blocksize, n); in blkcipher_walk_next()
246 if (unlikely(n < bsize)) { in blkcipher_walk_next()
247 err = blkcipher_next_slow(desc, walk, bsize, walk->alignmask); in blkcipher_walk_next()