Lines Matching refs:nblocks
176 unsigned int nblocks; in xts_crypt() local
190 nblocks = min(nbytes / bsize, max_blks); in xts_crypt()
202 for (i = 0; i < nblocks; i++) { in xts_crypt()
213 nblocks * bsize); in xts_crypt()
216 for (i = 0; i < nblocks; i++) in xts_crypt()
219 src += nblocks; in xts_crypt()
220 dst += nblocks; in xts_crypt()
221 nbytes -= nblocks * bsize; in xts_crypt()
222 nblocks = min(nbytes / bsize, max_blks); in xts_crypt()
223 } while (nblocks > 0); in xts_crypt()
232 nblocks = min(nbytes / bsize, max_blks); in xts_crypt()