Home
last modified time | relevance | path

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

/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dvfprintf.c1619 size_t nspecs_max = 32; /* A more or less arbitrary start value. */ in vfprintf() local
1621 = alloca (nspecs_max * sizeof (struct printf_spec)); in vfprintf()
1655 if (nspecs >= nspecs_max) in vfprintf()
1660 nspecs_max *= 2; in vfprintf()
1661 specs = alloca (nspecs_max * sizeof (struct printf_spec)); in vfprintf()
1666 nspecs_max += nspecs_max / 2; in vfprintf()
1675 nspecs_max += nspecs_max / 2; in vfprintf()