Lines Matching defs:res
260 unsigned long long res;
263 res = 0;
283 if (unlikely(res & (~0ull << 60))) {
284 if (res > __div_u64(ULLONG_MAX - val, base))
287 res = res * base + val;
291 *p = res;
295 static int _kstrtoull(const char *s, unsigned int base, unsigned long long *res)
311 *res = _res;
325 * @res: Where to write the result of the conversion on success.
331 int kstrtoull(const char *s, unsigned int base, unsigned long long *res)
335 return _kstrtoull(s, base, res);
338 static int _kstrtoul(const char *s, unsigned int base, unsigned long *res)
348 *res = tmp;
362 * @res: Where to write the result of the conversion on success.
367 int boot_kstrtoul(const char *s, unsigned int base, unsigned long *res)
375 return kstrtoull(s, base, (unsigned long long *)res);
377 return _kstrtoul(s, base, res);