Searched refs:nl_type (Results 1 – 2 of 2) sorted by relevance
/ndk/sources/android/support/src/stdio/ |
D | vfwprintf.c | 199 static int wprintf_core(FILE *f, const wchar_t *fmt, va_list *ap, union arg *nl_arg, int *nl_type) in wprintf_core() argument 250 nl_type[s[1]-'0'] = INT; in wprintf_core() 263 nl_type[s[2]-'0'] = INT; in wprintf_core() 290 if (argpos>=0) nl_type[argpos]=st, arg=nl_arg[argpos]; in wprintf_core() 372 for (i=1; i<=NL_ARGMAX && nl_type[i]; i++) in wprintf_core() 373 pop_arg(nl_arg+i, nl_type[i], ap); in wprintf_core() 374 for (; i<=NL_ARGMAX && !nl_type[i]; i++); in wprintf_core() 384 int nl_type[NL_ARGMAX] = {0}; 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() [all …]
|
D | vfprintf.c | 469 static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg, int *nl_type) in printf_core() argument 519 nl_type[s[1]-'0'] = INT; in printf_core() 532 nl_type[s[2]-'0'] = INT; in printf_core() 558 if (argpos>=0) nl_type[argpos]=st, arg=nl_arg[argpos]; in printf_core() 685 for (i=1; i<=NL_ARGMAX && nl_type[i]; i++) in printf_core() 686 pop_arg(nl_arg+i, nl_type[i], ap); in printf_core() 687 for (; i<=NL_ARGMAX && !nl_type[i]; i++); in printf_core() 698 int nl_type[NL_ARGMAX+1] = {0}; 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() [all …]
|