Lines Matching refs:res

55 	unsigned long long res;  in _parse_integer_limit()  local
58 res = 0; in _parse_integer_limit()
78 if (unlikely(res & (~0ull << 60))) { in _parse_integer_limit()
79 if (res > div_u64(ULLONG_MAX - val, base)) in _parse_integer_limit()
82 res = res * base + val; in _parse_integer_limit()
86 *p = res; in _parse_integer_limit()
96 static int _kstrtoull(const char *s, unsigned int base, unsigned long long *res) in _kstrtoull() argument
112 *res = _res; in _kstrtoull()
132 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) in kstrtoull() argument
136 return _kstrtoull(s, base, res); in kstrtoull()
156 int kstrtoll(const char *s, unsigned int base, long long *res) in kstrtoll() argument
167 *res = -tmp; in kstrtoll()
174 *res = tmp; in kstrtoll()
181 int _kstrtoul(const char *s, unsigned int base, unsigned long *res) in _kstrtoul() argument
191 *res = tmp; in _kstrtoul()
197 int _kstrtol(const char *s, unsigned int base, long *res) in _kstrtol() argument
207 *res = tmp; in _kstrtol()
228 int kstrtouint(const char *s, unsigned int base, unsigned int *res) in kstrtouint() argument
238 *res = tmp; in kstrtouint()
259 int kstrtoint(const char *s, unsigned int base, int *res) in kstrtoint() argument
269 *res = tmp; in kstrtoint()
275 int kstrtou16(const char *s, unsigned int base, u16 *res) in kstrtou16() argument
285 *res = tmp; in kstrtou16()
291 int kstrtos16(const char *s, unsigned int base, s16 *res) in kstrtos16() argument
301 *res = tmp; in kstrtos16()
307 int kstrtou8(const char *s, unsigned int base, u8 *res) in kstrtou8() argument
317 *res = tmp; in kstrtou8()
323 int kstrtos8(const char *s, unsigned int base, s8 *res) in kstrtos8() argument
333 *res = tmp; in kstrtos8()
348 int kstrtobool(const char *s, bool *res) in kstrtobool() argument
361 *res = true; in kstrtobool()
370 *res = false; in kstrtobool()
377 *res = true; in kstrtobool()
381 *res = false; in kstrtobool()
399 int kstrtobool_from_user(const char __user *s, size_t count, bool *res) in kstrtobool_from_user() argument
408 return kstrtobool(buf, res); in kstrtobool_from_user()
413 int f(const char __user *s, size_t count, unsigned int base, type *res) \
422 return g(buf, base, res); \