Lines Matching refs:blocks
35 const u32 *r, unsigned int blocks);
37 unsigned int blocks, const u32 *u);
40 unsigned int blocks, const u32 *u);
71 unsigned int blocks, datalen; in poly1305_simd_blocks() local
96 blocks = srclen / (POLY1305_BLOCK_SIZE * 4); in poly1305_simd_blocks()
97 poly1305_4block_avx2(dctx->h, src, dctx->r, blocks, sctx->u); in poly1305_simd_blocks()
98 src += POLY1305_BLOCK_SIZE * 4 * blocks; in poly1305_simd_blocks()
99 srclen -= POLY1305_BLOCK_SIZE * 4 * blocks; in poly1305_simd_blocks()
108 blocks = srclen / (POLY1305_BLOCK_SIZE * 2); in poly1305_simd_blocks()
109 poly1305_2block_sse2(dctx->h, src, dctx->r, blocks, sctx->u); in poly1305_simd_blocks()
110 src += POLY1305_BLOCK_SIZE * 2 * blocks; in poly1305_simd_blocks()
111 srclen -= POLY1305_BLOCK_SIZE * 2 * blocks; in poly1305_simd_blocks()