Home
last modified time | relevance | path

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

/ndk/sources/android/support/src/stdio/
Dvfwprintf.c199 static int wprintf_core(FILE *f, const wchar_t *fmt, va_list *ap, union arg *nl_arg, int *nl_type) in wprintf_core() argument
251 w = nl_arg[s[1]-'0'].i; in wprintf_core()
264 p = nl_arg[s[2]-'0'].i; in wprintf_core()
290 if (argpos>=0) nl_type[argpos]=st, arg=nl_arg[argpos]; in wprintf_core()
373 pop_arg(nl_arg+i, nl_type[i], ap); in wprintf_core()
385 union arg nl_arg[NL_ARGMAX]; in vfwprintf() local
391 if (wprintf_core(0, fmt, &ap2, nl_arg, nl_type) < 0) { in vfwprintf()
395 ret = wprintf_core(out, fmt, &ap2, nl_arg, nl_type); in vfwprintf()
404 union arg nl_arg[NL_ARGMAX]; in vswprintf() local
409 ret = wprintf_core(out, fmt, &ap2, nl_arg, nl_type); in vswprintf()
[all …]
Dvfprintf.c469 static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg, int *nl_type) in printf_core() argument
520 w = nl_arg[s[1]-'0'].i; in printf_core()
533 p = nl_arg[s[2]-'0'].i; in printf_core()
558 if (argpos>=0) nl_type[argpos]=st, arg=nl_arg[argpos]; in printf_core()
686 pop_arg(nl_arg+i, nl_type[i], ap); in printf_core()
699 union arg nl_arg[NL_ARGMAX+1]; in vfprintf() local
705 ret = printf_core(0, fmt, &ap2, nl_arg, nl_type); in vfprintf()
711 ret = printf_core(out, fmt, &ap2, nl_arg, nl_type); in vfprintf()
720 union arg nl_arg[NL_ARGMAX+1]; in vsnprintf() local
739 r = printf_core(out, fmt, &ap2, nl_arg, nl_type); in vsnprintf()
[all …]