Home
last modified time | relevance | path

Searched refs:MALLOC_TIME (Results 1 – 4 of 4) sorted by relevance

/third_party/musl/libc-test/src/regression/
Dmalloc-uaf-check.c28 #define MALLOC_TIME 67 macro
36 char *ptr[MALLOC_TIME]; in child()
37 char *ptr1[MALLOC_TIME]; in child()
38 char *divide[MALLOC_TIME]; in child()
40 for (int j = 0; j < MALLOC_TIME; ++j) { in child()
53 for (int j = 0; j < MALLOC_TIME; ++j) { in child()
59 for (int j = 0; j < MALLOC_TIME; ++j) { in child()
67 for (int j = 0; j < MALLOC_TIME; ++j) { in child()
72 for (int j = 0; j < MALLOC_TIME; ++j) { in child()
Dmalloc-overflow-check.c27 #define MALLOC_TIME 67 macro
35 char *ptr[MALLOC_TIME]; in child()
37 for (int j = 0; j < MALLOC_TIME; ++j) { in child()
46 for (int j = 0; j < MALLOC_TIME; ++j) { in child()
Dmalloc-free-performance.c8 #define MALLOC_TIME 131072 macro
172 for (int i = 0; i < MALLOC_TIME / CLUSTER_SIZE; ++i) { in main()
191 t_printf("Malloc and free %d times cost %lf s\n", MALLOC_TIME, cost / NANOSEC_PER_SEC); in main()
Dmalloc-multi-thread-performance.c14 #define MALLOC_TIME (ITER_TIME * (THRESHOLD / (SIZE_ALIGN + 1))) macro
86 …t_printf("Malloc and free %d threads %d times cost %lf s\n", THREAD_MAX_N, MALLOC_TIME, cost / NAN… in main()