Lines Matching refs:bsize
74 unsigned int bsize) in blkcipher_done_slow() argument
79 addr = blkcipher_get_spot(addr, bsize); in blkcipher_done_slow()
80 scatterwalk_copychunks(addr, &walk->out, bsize, 1); in blkcipher_done_slow()
81 return bsize; in blkcipher_done_slow()
148 unsigned int bsize, in blkcipher_next_slow() argument
152 unsigned aligned_bsize = ALIGN(bsize, alignmask + 1); in blkcipher_next_slow()
170 walk->dst.virt.addr = blkcipher_get_spot(walk->dst.virt.addr, bsize); in blkcipher_next_slow()
172 aligned_bsize, bsize); in blkcipher_next_slow()
174 scatterwalk_copychunks(walk->src.virt.addr, &walk->in, bsize, 0); in blkcipher_next_slow()
176 walk->nbytes = bsize; in blkcipher_next_slow()
226 unsigned int bsize; in blkcipher_walk_next() local
248 bsize = min(walk->walk_blocksize, n); in blkcipher_walk_next()
252 if (unlikely(n < bsize)) { in blkcipher_walk_next()
253 err = blkcipher_next_slow(desc, walk, bsize, walk->alignmask); in blkcipher_walk_next()