| /benchtests/ |
| A D | json-lib.c | 64 json_attr_object_begin (json_ctx_t *ctx, const char *name) in json_attr_object_begin() argument 71 fprintf (ctx->fp, "\"%s\": {\n", name); in json_attr_object_begin() 100 fprintf (ctx->fp, "\"%s\": \"%s\"", name, s); in json_attr_string() 104 json_attr_uint (json_ctx_t *ctx, const char *name, uint64_t d) in json_attr_uint() argument 113 fprintf (ctx->fp, "\"%s\": %" PRIu64 , name, d); in json_attr_uint() 117 json_attr_int (json_ctx_t *ctx, const char *name, int64_t d) in json_attr_int() argument 126 fprintf (ctx->fp, "\"%s\": %" PRId64 , name, d); in json_attr_int() 130 json_attr_double (json_ctx_t *ctx, const char *name, double d) in json_attr_double() argument 139 fprintf (ctx->fp, "\"%s\": %g", name, d); in json_attr_double() 143 json_array_begin (json_ctx_t *ctx, const char *name) in json_array_begin() argument [all …]
|
| A D | json-lib.h | 38 void json_attr_object_begin (json_ctx_t *ctx, const char *name); 40 void json_attr_string (json_ctx_t *ctx, const char *name, const char *s); 41 void json_attr_int (json_ctx_t *ctx, const char *name, int64_t d); 42 void json_attr_uint (json_ctx_t *ctx, const char *name, uint64_t d); 43 void json_attr_double (json_ctx_t *ctx, const char *name, double d); 44 void json_array_begin (json_ctx_t *ctx, const char *name);
|
| A D | bench-string.h | 35 const char *name; member 41 #define IMPL(name, test) \ argument 42 impl_t tst_ ## name \ 44 = { __STRING (name), (void (*) (void))name, test }; 200 if (strcmp (impl->name, TEST_NAME) == 0) \ 212 a->name = func_list[f].name; \
|
| A D | thread_create-inputs | 6 ## name: stack=1024,guard=1 8 ## name: stack=1024,guard=2 11 ## name: stack=2048,guard=1 13 ## name: stack=2048,guard=2
|
| A D | bench-math-inlines.c | 183 const char *name; member 187 #define IMPL(name) { #name, name ## _t } argument 268 json_attr_object_begin (&json_ctx, test_list[i].name); in test_main() 275 json_attr_object_begin (&json_ctx, test_list[i].name); in test_main()
|
| A D | README | 97 If the name of the function is `foo', then the following procedure should allow 100 - Append the function name to the bench variable in the Makefile. 123 - name: See following section for instructions on how to use this directive. 136 the same file by using the `name' directive that looks something like this: 138 ##name: 240bits 140 All inputs after the ##name: 240bits directive and until the next `name' 150 ##name: workload-<name> 152 where <name> is simply used to distinguish between different traces in the
|
| A D | bench-strncat.c | 59 error (0, 0, "Wrong result in function %s %p != %p", impl->name, in do_one_test() 69 impl->name); in do_one_test() 76 impl->name); in do_one_test() 142 printf ("\t%s", impl->name); in main()
|
| A D | bench-strncpy.c | 62 error (0, 0, "Wrong result in function %s %p %p", impl->name, in do_one_test() 70 error (0, 0, "Wrong result in function %s", impl->name); in do_one_test() 82 error (0, 0, "Wrong result in function %s", impl->name); in do_one_test() 143 printf ("\t%s", impl->name); in test_main()
|
| A D | bench-strcpy_chk.c | 93 impl->name, len, dlen); in do_one_test() 104 printf ("Wrong result in function %s %p %p\n", impl->name, in do_one_test() 113 impl->name, dst, src); in do_one_test() 172 printf ("\t%s", impl->name); in test_main()
|
| A D | bench-pthread-locks.c | 419 do_bench_2 (const char *name, test_t func, int filler, json_ctx_t *js) in do_bench_2() argument 491 snprintf (buf, sizeof buf, "%s-%s", name, filler ? "filler" : "empty"); in do_bench_2() 511 do_bench_1 (const char *name, test_t func, json_ctx_t *js) in do_bench_1() argument 515 rv += do_bench_2 (name, func, 0, js); in do_bench_1() 516 rv += do_bench_2 (name, func, 1, js); in do_bench_1()
|
| A D | bench-strcat.c | 59 error (0, 0, "Wrong result in function %s %p %p", impl->name, in do_one_test() 68 impl->name, dst, src); in do_one_test() 130 printf ("\t%s", impl->name); in test_main()
|
| A D | bench-strcpy.c | 62 error (0, 0, "Wrong result in function %s %p %p", impl->name, in do_one_test() 72 impl->name, dst, src); in do_one_test() 130 printf ("\t%s", impl->name); in test_main()
|
| A D | logbf-inputs | 5 ## name: subnormal 9 ## name: normal
|
| A D | ilogbf-inputs | 5 ## name: subnormal 9 ## name: normal
|
| A D | logb-inputs | 5 ## name: subnormal 9 ## name: normal
|
| A D | ilogb-inputs | 5 ## name: subnormal 9 ## name: normal
|
| A D | ilogbf128-inputs | 5 ## name: subnormal 9 ## name: normal
|
| A D | fmin-inputs | 14 ## name: qNaN 19 ## name: sNaN
|
| A D | fmax-inputs | 14 ## name: qNaN 19 ## name: sNaN
|
| A D | isfinite-inputs | 16 ## name: INF 19 ## name: NAN
|
| A D | isinf-inputs | 16 ## name: INF 19 ## name: NAN
|
| A D | isnan-inputs | 16 ## name: INF 19 ## name: NAN
|
| A D | sprintf-inputs | 5 ## name: positional 8 ## name: non-positional
|
| A D | fmaxf-inputs | 14 ## name: qNaN 19 ## name: sNaN
|
| A D | fminf-inputs | 14 ## name: qNaN 19 ## name: sNaN
|