Home
last modified time | relevance | path

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

/glibc-2.36/misc/
Dbug18240.c28 test_size (size_t size) in test_size() function
83 test_size (500); in do_test()
84 test_size (-1); in do_test()
85 test_size (-3); in do_test()
86 test_size (INT_MAX - 2); in do_test()
87 test_size (INT_MAX - 1); in do_test()
88 test_size (INT_MAX); in do_test()
89 test_size (((unsigned) INT_MAX) + 1); in do_test()
90 test_size (UINT_MAX - 2); in do_test()
91 test_size (UINT_MAX - 1); in do_test()
[all …]
/glibc-2.36/sysdeps/unix/sysv/linux/
Dtst-skeleton-affinity.c133 test_size (const struct conf *conf, size_t size) in test_size() function
281 error |= !test_size (&conf, 1024); in do_test()
282 error |= !test_size (&conf, conf.set_size); in do_test()
283 error |= !test_size (&conf, 2); in do_test()
284 error |= !test_size (&conf, 32); in do_test()
285 error |= !test_size (&conf, 40); in do_test()
286 error |= !test_size (&conf, 64); in do_test()
287 error |= !test_size (&conf, 96); in do_test()
288 error |= !test_size (&conf, 128); in do_test()
289 error |= !test_size (&conf, 256); in do_test()
[all …]
/glibc-2.36/sysdeps/pthread/
Dtst-stack1.c44 size_t test_size; in tf() local
46 if (pthread_attr_getstack (&attr, &test_stack, &test_size) != 0) in tf()
52 if (test_size != size) in tf()
55 test_size, size); in tf()
101 size_t test_size; in do_test() local
104 if (pthread_attr_getstack (&attr, &test_stack, &test_size) != 0) in do_test()
110 if (test_size != size) in do_test()
113 test_size, size); in do_test()
/glibc-2.36/ChangeLog.old/
DChangeLog.1910321 * sysdeps/unix/sysv/linux/tst-skeleton-affinity.c (test_size):