Lines Matching defs:blocks
45 asmlinkage void pmull_ghash_update_p64(int blocks, u64 dg[], const char *src,
48 asmlinkage void pmull_ghash_update_p8(int blocks, u64 dg[], const char *src,
61 static void ghash_do_update(int blocks, u64 dg[], const char *src,
67 pmull_ghash_update_p64(blocks, dg, src, key->h, head);
69 pmull_ghash_update_p8(blocks, dg, src, key->h, head);
79 blocks++;
87 } while (--blocks);
104 int blocks;
114 blocks = len / GHASH_BLOCK_SIZE;
117 ghash_do_update(blocks, ctx->digest, src, key,
119 src += blocks * GHASH_BLOCK_SIZE;