Lines Matching refs:res
671 uintmax_t res; in __svfscanf() local
675 res = strtoumax(buf, nullptr, base); in __svfscanf()
677 res = strtoimax(buf, nullptr, base); in __svfscanf()
680 *va_arg(ap, void**) = (void*)(uintptr_t)res; in __svfscanf()
682 *va_arg(ap, intmax_t*) = res; in __svfscanf()
684 *va_arg(ap, long long*) = res; in __svfscanf()
686 *va_arg(ap, ssize_t*) = res; in __svfscanf()
688 *va_arg(ap, ptrdiff_t*) = res; in __svfscanf()
690 *va_arg(ap, long*) = res; in __svfscanf()
692 *va_arg(ap, short*) = res; in __svfscanf()
694 *va_arg(ap, signed char*) = res; in __svfscanf()
696 *va_arg(ap, int*) = res; in __svfscanf()
709 long double res = strtold(buf, &p); in __svfscanf() local
710 *va_arg(ap, long double*) = res; in __svfscanf()
712 double res = strtod(buf, &p); in __svfscanf() local
713 *va_arg(ap, double*) = res; in __svfscanf()
715 float res = strtof(buf, &p); in __svfscanf() local
716 *va_arg(ap, float*) = res; in __svfscanf()