Lines Matching refs:res

267 int __must_check _kstrtoul(const char *s, unsigned int base, unsigned long *res);
268 int __must_check _kstrtol(const char *s, unsigned int base, long *res);
270 int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res);
271 int __must_check kstrtoll(const char *s, unsigned int base, long long *res);
289 static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res) in kstrtoul() argument
297 return kstrtoull(s, base, (unsigned long long *)res); in kstrtoul()
299 return _kstrtoul(s, base, res); in kstrtoul()
318 static inline int __must_check kstrtol(const char *s, unsigned int base, long *res) in kstrtol() argument
326 return kstrtoll(s, base, (long long *)res); in kstrtol()
328 return _kstrtol(s, base, res); in kstrtol()
331 int __must_check kstrtouint(const char *s, unsigned int base, unsigned int *res);
332 int __must_check kstrtoint(const char *s, unsigned int base, int *res);
334 static inline int __must_check kstrtou64(const char *s, unsigned int base, u64 *res) in kstrtou64() argument
336 return kstrtoull(s, base, res); in kstrtou64()
339 static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res) in kstrtos64() argument
341 return kstrtoll(s, base, res); in kstrtos64()
344 static inline int __must_check kstrtou32(const char *s, unsigned int base, u32 *res) in kstrtou32() argument
346 return kstrtouint(s, base, res); in kstrtou32()
349 static inline int __must_check kstrtos32(const char *s, unsigned int base, s32 *res) in kstrtos32() argument
351 return kstrtoint(s, base, res); in kstrtos32()
354 int __must_check kstrtou16(const char *s, unsigned int base, u16 *res);
355 int __must_check kstrtos16(const char *s, unsigned int base, s16 *res);
356 int __must_check kstrtou8(const char *s, unsigned int base, u8 *res);
357 int __must_check kstrtos8(const char *s, unsigned int base, s8 *res);
359 …strtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigned long long *res);
360 …st_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long long *res);
361 …heck kstrtoul_from_user(const char __user *s, size_t count, unsigned int base, unsigned long *res);
362 int __must_check kstrtol_from_user(const char __user *s, size_t count, unsigned int base, long *res
363 …eck kstrtouint_from_user(const char __user *s, size_t count, unsigned int base, unsigned int *res);
364 … __must_check kstrtoint_from_user(const char __user *s, size_t count, unsigned int base, int *res);
365 … __must_check kstrtou16_from_user(const char __user *s, size_t count, unsigned int base, u16 *res);
366 … __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *res);
367 int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res);
368 int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res);
370 …t __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int base, u64 *res) in kstrtou64_from_user() argument
372 return kstrtoull_from_user(s, count, base, res); in kstrtou64_from_user()
375 …t __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int base, s64 *res) in kstrtos64_from_user() argument
377 return kstrtoll_from_user(s, count, base, res); in kstrtos64_from_user()
380 …t __must_check kstrtou32_from_user(const char __user *s, size_t count, unsigned int base, u32 *res) in kstrtou32_from_user() argument
382 return kstrtouint_from_user(s, count, base, res); in kstrtou32_from_user()
385 …t __must_check kstrtos32_from_user(const char __user *s, size_t count, unsigned int base, s32 *res) in kstrtos32_from_user() argument
387 return kstrtoint_from_user(s, count, base, res); in kstrtos32_from_user()