mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
bench-memcpy: Collect data from 2KB to 4KB
Collect data on memcpy from 2KB to 4KB with the 64-byte increment value.
This commit is contained in:
parent
b03e4d7bd2
commit
98544f5bcf
@ -145,6 +145,14 @@ test_main (void)
|
||||
|
||||
do_test (&json_ctx, 0, 0, getpagesize ());
|
||||
|
||||
for (i = 0; i <= 32; ++i)
|
||||
{
|
||||
do_test (&json_ctx, 0, 0, 2048 + 64 * i);
|
||||
do_test (&json_ctx, i, 0, 2048 + 64 * i);
|
||||
do_test (&json_ctx, 0, i, 2048 + 64 * i);
|
||||
do_test (&json_ctx, i, i, 2048 + 64 * i);
|
||||
}
|
||||
|
||||
json_array_end (&json_ctx);
|
||||
json_attr_object_end (&json_ctx);
|
||||
json_attr_object_end (&json_ctx);
|
||||
|
Loading…
Reference in New Issue
Block a user