• Home
  • Raw
  • Download

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
107 #define __put_user_nocheck(data,addr,size) ({ \ argument
109 switch (size) { \
117 #define __put_user_asm(x,size,addr,ret) \ argument
120 "1:\t" "st"#size "a %1, [%2] %%asi\n\t" \
139 #define __get_user_nocheck(data,addr,size,type) ({ \ argument
142 switch (size) { \
150 #define __get_user_nocheck_ret(data,addr,size,type,retval) ({ \ argument
152 switch (size) { \
160 #define __get_user_asm(x,size,addr,ret) \ argument
163 "1:\t" "ld"#size "a [%2] %%asi, %1\n\t" \
181 #define __get_user_asm_ret(x,size,addr,retval) \ argument
185 "1:\t" "ld"#size "a [%1] %%asi, %0\n\n\t" \
194 "1:\t" "ld"#size "a [%1] %%asi, %0\n\n\t" \
211 unsigned long size);
213 unsigned long size);
215 copy_from_user(void *to, const void __user *from, unsigned long size) in copy_from_user() argument
217 unsigned long ret = ___copy_from_user(to, from, size); in copy_from_user()
220 ret = copy_from_user_fixup(to, from, size); in copy_from_user()
228 unsigned long size);
230 unsigned long size);
232 copy_to_user(void __user *to, const void *from, unsigned long size) in copy_to_user() argument
234 unsigned long ret = ___copy_to_user(to, from, size); in copy_to_user()
237 ret = copy_to_user_fixup(to, from, size); in copy_to_user()
244 unsigned long size);
246 unsigned long size);
248 copy_in_user(void __user *to, void __user *from, unsigned long size) in copy_in_user() argument
250 unsigned long ret = ___copy_in_user(to, from, size); in copy_in_user()
253 ret = copy_in_user_fixup(to, from, size); in copy_in_user()