Lines Matching defs:nbytes
377 unsigned int nbytes;
383 while ((nbytes = walk.nbytes)) {
385 nbytes & AES_BLOCK_MASK);
386 nbytes &= AES_BLOCK_SIZE - 1;
387 err = skcipher_walk_done(&walk, nbytes);
399 unsigned int nbytes;
405 while ((nbytes = walk.nbytes)) {
407 nbytes & AES_BLOCK_MASK);
408 nbytes &= AES_BLOCK_SIZE - 1;
409 err = skcipher_walk_done(&walk, nbytes);
421 unsigned int nbytes;
427 while ((nbytes = walk.nbytes)) {
429 nbytes & AES_BLOCK_MASK, walk.iv);
430 nbytes &= AES_BLOCK_SIZE - 1;
431 err = skcipher_walk_done(&walk, nbytes);
443 unsigned int nbytes;
449 while ((nbytes = walk.nbytes)) {
451 nbytes & AES_BLOCK_MASK, walk.iv);
452 nbytes &= AES_BLOCK_SIZE - 1;
453 err = skcipher_walk_done(&walk, nbytes);
468 unsigned int nbytes = walk->nbytes;
471 crypto_xor_cpy(dst, keystream, src, nbytes);
498 unsigned int nbytes;
504 while ((nbytes = walk.nbytes) >= AES_BLOCK_SIZE) {
506 nbytes & AES_BLOCK_MASK, walk.iv);
507 nbytes &= AES_BLOCK_SIZE - 1;
508 err = skcipher_walk_done(&walk, nbytes);
510 if (walk.nbytes) {