Lines Matching defs:len
21 const size_t len, const u32 padbit);
26 asmlinkage void poly1305_blocks_avx(void *ctx, const u8 *inp, const size_t len,
28 asmlinkage void poly1305_blocks_avx2(void *ctx, const u8 *inp, const size_t len,
31 const size_t len, const u32 padbit);
89 static void poly1305_simd_blocks(void *ctx, const u8 *inp, size_t len,
99 (len < (POLY1305_BLOCK_SIZE * 18) && !state->is_base2_26) ||
102 poly1305_blocks_x86_64(ctx, inp, len, padbit);
107 const size_t bytes = min_t(size_t, len, SZ_4K);
118 len -= bytes;
120 } while (len);
145 const u8 *inp, unsigned int len)
149 if (!dctx->rset && len >= POLY1305_BLOCK_SIZE) {
152 len -= POLY1305_BLOCK_SIZE;
156 if (len >= POLY1305_BLOCK_SIZE) {