Re: [PATCH] hogweed-benchmark: fill 32 or 56 bytes rather than just sizeof(int)

2020-01-25 Thread Niels Möller
dbarysh...@gmail.com writes: > diff --git a/examples/hogweed-benchmark.c b/examples/hogweed-benchmark.c > index 11393df04c81..69315211a0cc 100644 > --- a/examples/hogweed-benchmark.c > +++ b/examples/hogweed-benchmark.c > @@ -771,12 +771,12 @@ bench_curve_init (unsigned size) > case 255: >

[PATCH] hogweed-benchmark: fill 32 or 56 bytes rather than just sizeof(int)

2020-01-16 Thread dbaryshkov
From: Dmitry Baryshkov Don't call sizeof(CURVExyz_SIZE) to get amount of bytes to fill. Just use CURVExyz_SIZE itself. Signed-off-by: Dmitry Baryshkov --- examples/hogweed-benchmark.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/hogweed-benchmark.c b/example