• Home
  • Raw
  • Download

Lines Matching refs:res

53 	unsigned long long res;  in _parse_integer_limit()  local
56 res = 0; in _parse_integer_limit()
76 if (unlikely(res & (~0ull << 60))) { in _parse_integer_limit()
77 if (res > div_u64(ULLONG_MAX - val, base)) in _parse_integer_limit()
80 res = res * base + val; in _parse_integer_limit()
84 *p = res; in _parse_integer_limit()
93 static int _kstrtoull(const char *s, unsigned int base, unsigned long long *res) in _kstrtoull() argument
109 *res = _res; in _kstrtoull()
128 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) in kstrtoull() argument
132 return _kstrtoull(s, base, res); in kstrtoull()
151 int kstrtoll(const char *s, unsigned int base, long long *res) in kstrtoll() argument
162 *res = -tmp; in kstrtoll()
169 *res = tmp; in kstrtoll()
176 int _kstrtoul(const char *s, unsigned int base, unsigned long *res) in _kstrtoul() argument
186 *res = tmp; in _kstrtoul()
192 int _kstrtol(const char *s, unsigned int base, long *res) in _kstrtol() argument
202 *res = tmp; in _kstrtol()
222 int kstrtouint(const char *s, unsigned int base, unsigned int *res) in kstrtouint() argument
232 *res = tmp; in kstrtouint()
252 int kstrtoint(const char *s, unsigned int base, int *res) in kstrtoint() argument
262 *res = tmp; in kstrtoint()
267 int kstrtou16(const char *s, unsigned int base, u16 *res) in kstrtou16() argument
277 *res = tmp; in kstrtou16()
282 int kstrtos16(const char *s, unsigned int base, s16 *res) in kstrtos16() argument
292 *res = tmp; in kstrtos16()
297 int kstrtou8(const char *s, unsigned int base, u8 *res) in kstrtou8() argument
307 *res = tmp; in kstrtou8()
312 int kstrtos8(const char *s, unsigned int base, s8 *res) in kstrtos8() argument
322 *res = tmp; in kstrtos8()
336 int kstrtobool(const char *s, bool *res) in kstrtobool() argument
345 *res = true; in kstrtobool()
350 *res = false; in kstrtobool()
357 *res = true; in kstrtobool()
361 *res = false; in kstrtobool()
379 int kstrtobool_from_user(const char __user *s, size_t count, bool *res) in kstrtobool_from_user() argument
388 return kstrtobool(buf, res); in kstrtobool_from_user()
393 int f(const char __user *s, size_t count, unsigned int base, type *res) \
402 return g(buf, base, res); \