Lines Matching defs:inp
70 * of |inp| no longer than |len|. Behaviour for |len| not divisible by
88 poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit);
148 poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit)
167 h0 = (u64)(d0 = (u128)h0 + U8TOU64(inp + 0));
168 h1 = (u64)(d1 = (u128)h1 + (d0 >> 64) + U8TOU64(inp + 8));
204 inp += POLY1305_BLOCK_SIZE;
290 poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit)
315 h0 = (u32)(d0 = (u64)h0 + U8TOU32(inp + 0));
316 h1 = (u32)(d1 = (u64)h1 + (d0 >> 32) + U8TOU32(inp + 4));
317 h2 = (u32)(d2 = (u64)h2 + (d1 >> 32) + U8TOU32(inp + 8));
318 h3 = (u32)(d3 = (u64)h3 + (d2 >> 32) + U8TOU32(inp + 12));
368 inp += POLY1305_BLOCK_SIZE;
427 void poly1305_blocks(void *ctx, const unsigned char *inp, size_t len,
468 void Poly1305_Update(POLY1305 *ctx, const unsigned char *inp, size_t len)
484 memcpy(ctx->data + num, inp, rem);
486 inp += rem;
490 memcpy(ctx->data + num, inp, len);
500 poly1305_blocks(ctx->opaque, inp, len, 1);
501 inp += len;
505 memcpy(ctx->data, inp, rem);