Lines Matching defs:count

100 int __must_check kstrtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigned long long *res);
101 int __must_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long long *res);
102 int __must_check kstrtoul_from_user(const char __user *s, size_t count, unsigned int base, unsigned long *res);
103 int __must_check kstrtol_from_user(const char __user *s, size_t count, unsigned int base, long *res);
104 int __must_check kstrtouint_from_user(const char __user *s, size_t count, unsigned int base, unsigned int *res);
105 int __must_check kstrtoint_from_user(const char __user *s, size_t count, unsigned int base, int *res);
106 int __must_check kstrtou16_from_user(const char __user *s, size_t count, unsigned int base, u16 *res);
107 int __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *res);
108 int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res);
109 int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res);
110 int __must_check kstrtobool_from_user(const char __user *s, size_t count, bool *res);
112 static inline int __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int base, u64 *res)
114 return kstrtoull_from_user(s, count, base, res);
117 static inline int __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int base, s64 *res)
119 return kstrtoll_from_user(s, count, base, res);
122 static inline int __must_check kstrtou32_from_user(const char __user *s, size_t count, unsigned int base, u32 *res)
124 return kstrtouint_from_user(s, count, base, res);
127 static inline int __must_check kstrtos32_from_user(const char __user *s, size_t count, unsigned int base, s32 *res)
129 return kstrtoint_from_user(s, count, base, res);