Home
last modified time | relevance | path

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

/third_party/ulib/musl/src/stdio/
A Dvfwprintf.c217 static int wprintf_core(FILE* f, const wchar_t* fmt, va_list* ap, union arg* nl_arg, int* nl_type) { in wprintf_core() argument
273 nl_type[s[1] - '0'] = INT; in wprintf_core()
289 nl_type[s[2] - '0'] = INT; in wprintf_core()
320 nl_type[argpos] = st, arg = nl_arg[argpos]; in wprintf_core()
437 for (i = 1; i <= NL_ARGMAX && nl_type[i]; i++) in wprintf_core()
438 pop_arg(nl_arg + i, nl_type[i], ap); in wprintf_core()
439 for (; i <= NL_ARGMAX && !nl_type[i]; i++) in wprintf_core()
448 int nl_type[NL_ARGMAX] = {}; in vfwprintf() local
455 if (wprintf_core(0, fmt, &ap2, nl_arg, nl_type) < 0) { in vfwprintf()
464 ret = wprintf_core(f, fmt, &ap2, nl_arg, nl_type); in vfwprintf()
A Dvfprintf.c542 union arg* nl_arg, int* nl_type) { in printf_core() argument
598 nl_type[s[1] - '0'] = INT; in printf_core()
614 nl_type[s[2] - '0'] = INT; in printf_core()
645 nl_type[argpos] = st, arg = nl_arg[argpos]; in printf_core()
801 for (i = 1; i <= NL_ARGMAX && nl_type[i]; i++) in printf_core()
802 pop_arg(nl_arg + i, nl_type[i], ap); in printf_core()
803 for (; i <= NL_ARGMAX && !nl_type[i]; i++) in printf_core()
813 int nl_type[NL_ARGMAX + 1] = {}; in vfprintf() local
821 if (printf_core(0, fmt, &ap2, nl_arg, nl_type) < 0) { in vfprintf()
836 ret = printf_core(f, fmt, &ap2, nl_arg, nl_type); in vfprintf()

Completed in 7 milliseconds