Lines Matching refs:res
578 uintmax_t res; in __vfwscanf() local
582 res = wcstoimax(buf, NULL, base); in __vfwscanf()
584 res = wcstoumax(buf, NULL, base); in __vfwscanf()
586 *va_arg(ap, void**) = (void*)(uintptr_t)res; in __vfwscanf()
588 *va_arg(ap, intmax_t*) = res; in __vfwscanf()
590 *va_arg(ap, long long*) = res; in __vfwscanf()
592 *va_arg(ap, ssize_t*) = res; in __vfwscanf()
594 *va_arg(ap, ptrdiff_t*) = res; in __vfwscanf()
596 *va_arg(ap, long*) = res; in __vfwscanf()
598 *va_arg(ap, short*) = res; in __vfwscanf()
600 *va_arg(ap, signed char*) = res; in __vfwscanf()
602 *va_arg(ap, int*) = res; in __vfwscanf()
616 long double res = wcstold(buf, &p); in __vfwscanf() local
617 *va_arg(ap, long double*) = res; in __vfwscanf()
619 double res = wcstod(buf, &p); in __vfwscanf() local
620 *va_arg(ap, double*) = res; in __vfwscanf()
622 float res = wcstof(buf, &p); in __vfwscanf() local
623 *va_arg(ap, float*) = res; in __vfwscanf()