Lines Matching refs:size

52 static inline int __access_ok(const void __user * addr, unsigned long size)  in __access_ok()  argument
57 static inline int access_ok(int type, const void __user * addr, unsigned long size) in access_ok() argument
109 #define __put_user_nocheck(data, addr, size) ({ \ argument
111 switch (size) { \
121 #define __put_user_asm(x, size, addr, ret) \ argument
124 "1:\t" "st"#size "a %1, [%2] %%asi\n\t" \
143 #define __get_user_nocheck(data, addr, size, type) ({ \ argument
146 switch (size) { \
160 #define __get_user_nocheck_ret(data, addr, size, type, retval) ({ \ argument
162 switch (size) { \
174 #define __get_user_asm(x, size, addr, ret) \ argument
177 "1:\t" "ld"#size "a [%2] %%asi, %1\n\t" \
195 #define __get_user_asm_ret(x, size, addr, retval) \ argument
199 "1:\t" "ld"#size "a [%1] %%asi, %0\n\n\t" \
208 "1:\t" "ld"#size "a [%1] %%asi, %0\n\n\t" \
225 unsigned long size);
227 unsigned long size);
229 copy_from_user(void *to, const void __user *from, unsigned long size) in copy_from_user() argument
231 unsigned long ret = ___copy_from_user(to, from, size); in copy_from_user()
234 ret = copy_from_user_fixup(to, from, size); in copy_from_user()
242 unsigned long size);
244 unsigned long size);
246 copy_to_user(void __user *to, const void *from, unsigned long size) in copy_to_user() argument
248 unsigned long ret = ___copy_to_user(to, from, size); in copy_to_user()
251 ret = copy_to_user_fixup(to, from, size); in copy_to_user()
258 unsigned long size);
260 unsigned long size);
262 copy_in_user(void __user *to, void __user *from, unsigned long size) in copy_in_user() argument
264 unsigned long ret = ___copy_in_user(to, from, size); in copy_in_user()
267 ret = copy_in_user_fixup(to, from, size); in copy_in_user()