Lines Matching refs:n
33 static inline void copy_pc_to_user(void *to, const void *from, size_t n) in copy_pc_to_user() argument
35 size_t odd = (n & 3); in copy_pc_to_user()
36 n -= odd; in copy_pc_to_user()
37 while (n) { in copy_pc_to_user()
39 (char *)from += 4; (char *)to += 4; n -= 4; in copy_pc_to_user()
45 static inline void copy_user_to_pc(void *to, const void *from, size_t n) in copy_user_to_pc() argument
49 size_t odd = (n & 3); in copy_user_to_pc()
50 n -= odd; in copy_user_to_pc()
51 while (n) { in copy_user_to_pc()
54 (char *)to += 4; (char *)from += 4; n -= 4; in copy_user_to_pc()
64 static inline void copy_from_pc(void *to, void __iomem *from, size_t n) in copy_from_pc() argument
68 size_t odd = (n & 1); in copy_from_pc()
69 for (n >>= 1; n; n--) in copy_from_pc()
75 static inline void copy_to_pc(void __iomem *to, const void *from, size_t n) in copy_to_pc() argument
79 size_t odd = (n & 1); in copy_to_pc()
80 for (n >>= 1; n ; n--) in copy_to_pc()
86 static inline void copy_pc_to_user(void __user *to, void __iomem *from, size_t n) in copy_pc_to_user() argument
90 size_t odd = (n & 1); in copy_pc_to_user()
91 for (n >>= 1; n ; n--) in copy_pc_to_user()
97 static inline void copy_user_to_pc(void __iomem *to, void __user *from, size_t n) in copy_user_to_pc() argument
103 size_t odd = (n & 1); in copy_user_to_pc()
104 for (n >>= 1; n; n--) { in copy_user_to_pc()