Home
last modified time | relevance | path

Searched refs:limit (Results 1 – 3 of 3) sorted by relevance

/stdio-common/
A Dtst-vfprintf-width-prec.c61 struct rlimit limit; in do_test() local
62 if (getrlimit (RLIMIT_AS, &limit) != 0) in do_test()
68 if (limit.rlim_cur == RLIM_INFINITY || limit.rlim_cur > target) in do_test()
70 limit.rlim_cur = target; in do_test()
71 if (setrlimit (RLIMIT_AS, &limit) != 0) in do_test()
A Dtst-vfprintf-width-prec-alloc.c28 struct rlimit limit; in do_test() local
29 TEST_VERIFY_EXIT (getrlimit (RLIMIT_AS, &limit) == 0); in do_test()
30 limit.rlim_cur = 200 * 1024 * 1024; in do_test()
31 TEST_VERIFY_EXIT (setrlimit (RLIMIT_AS, &limit) == 0); in do_test()
A Dvfprintf-internal.c284 size_t limit = prec; in outstring_converted_wide_string() local
285 while (limit > 0 && src_copy != NULL) in outstring_converted_wide_string()
288 if (write_limit > limit) in outstring_converted_wide_string()
289 write_limit = limit; in outstring_converted_wide_string()
297 limit -= written; in outstring_converted_wide_string()

Completed in 7 milliseconds