Lines Matching refs:src
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);
75 const u8 *in = src;
82 src += GHASH_BLOCK_SIZE;
94 static int ghash_update(struct shash_desc *desc, const u8 *src,
109 memcpy(ctx->buf + partial, src, p);
110 src += p;
117 ghash_do_update(blocks, ctx->digest, src, key,
119 src += blocks * GHASH_BLOCK_SIZE;
123 memcpy(ctx->buf + partial, src, len);