Lines Matching defs:bsize
31 unsigned int bsize = crypto_cipher_blocksize(tfm);
43 crypto_inc(ctrblk, bsize);
51 unsigned int bsize = crypto_cipher_blocksize(tfm);
60 crypto_xor(dst, src, bsize);
63 crypto_inc(ctrblk, bsize);
65 src += bsize;
66 dst += bsize;
67 } while ((nbytes -= bsize) >= bsize);
77 unsigned int bsize = crypto_cipher_blocksize(tfm);
88 crypto_xor(src, keystream, bsize);
91 crypto_inc(ctrblk, bsize);
93 src += bsize;
94 } while ((nbytes -= bsize) >= bsize);
103 const unsigned int bsize = crypto_cipher_blocksize(cipher);
110 while (walk.nbytes >= bsize) {