Lines Matching refs:from
33 static inline void copy_pc_to_user(void *to, const void *from, size_t n) in copy_pc_to_user() argument
38 put_user(__raw_readl(from), (int *)to); in copy_pc_to_user()
39 (char *)from += 4; (char *)to += 4; n -= 4; in copy_pc_to_user()
42 put_user(readb((char *)from++), (char *)to++); 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
52 get_user(l, (int *)from); in copy_user_to_pc()
54 (char *)to += 4; (char *)from += 4; n -= 4; in copy_user_to_pc()
57 get_user(c, (char *)from++); 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
67 __u16 __iomem *f = from; 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
78 const __u16 *f = from; 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
89 __u16 __iomem *f = from; 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
99 __u16 __user *f = from; in copy_user_to_pc()