Lines Matching refs:src

165 					unsigned long src, unsigned long len)  in copy_dstaligned()  argument
177 sh_1 = 8 * (src % sizeof(unsigned int)); in copy_dstaligned()
181 src &= -sizeof(unsigned int); in copy_dstaligned()
188 ldw(s_space, 0, src, a1, cda_ldw_exc); in copy_dstaligned()
189 ldw(s_space, 4, src, a2, cda_ldw_exc); in copy_dstaligned()
190 src -= 1 * sizeof(unsigned int); in copy_dstaligned()
197 ldw(s_space, 0, src, a0, cda_ldw_exc); in copy_dstaligned()
198 ldw(s_space, 4, src, a1, cda_ldw_exc); in copy_dstaligned()
199 src -= 0 * sizeof(unsigned int); in copy_dstaligned()
208 ldw(s_space, 0, src, a3, cda_ldw_exc); in copy_dstaligned()
209 ldw(s_space, 4, src, a0, cda_ldw_exc); in copy_dstaligned()
210 src -=-1 * sizeof(unsigned int); in copy_dstaligned()
217 ldw(s_space, 0, src, a2, cda_ldw_exc); in copy_dstaligned()
218 ldw(s_space, 4, src, a3, cda_ldw_exc); in copy_dstaligned()
219 src -=-2 * sizeof(unsigned int); in copy_dstaligned()
232 ldw(s_space, 0, src, a0, cda_ldw_exc); in copy_dstaligned()
237 ldw(s_space, 4, src, a1, cda_ldw_exc); in copy_dstaligned()
242 ldw(s_space, 8, src, a2, cda_ldw_exc); in copy_dstaligned()
247 ldw(s_space, 12, src, a3, cda_ldw_exc); in copy_dstaligned()
251 src += 4 * sizeof(unsigned int); in copy_dstaligned()
282 register unsigned long src, dst, t1, t2, t3; in pa_memcpy_internal() local
288 src = (unsigned long)srcp; in pa_memcpy_internal()
299 t1 = (src ^ dst); in pa_memcpy_internal()
306 t2 = src & (sizeof(double) - 1); in pa_memcpy_internal()
407 t2 = src & (sizeof(unsigned int) - 1); in pa_memcpy_internal()
436 src = (unsigned long)pcs; in pa_memcpy_internal()
439 ret = copy_dstaligned(dst, src, len / sizeof(unsigned int)); in pa_memcpy_internal()
492 unsigned long copy_to_user(void __user *dst, const void *src, unsigned long len) in copy_to_user() argument
496 return pa_memcpy((void __force *)dst, src, len); in copy_to_user()
500 unsigned long __copy_from_user(void *dst, const void __user *src, unsigned long len) in __copy_from_user() argument
504 return pa_memcpy(dst, (void __force *)src, len); in __copy_from_user()
507 unsigned long copy_in_user(void __user *dst, const void __user *src, unsigned long len) in copy_in_user() argument
511 return pa_memcpy((void __force *)dst, (void __force *)src, len); in copy_in_user()
515 void * memcpy(void * dst,const void *src, size_t count) in memcpy() argument
519 pa_memcpy(dst, src, count); in memcpy()
528 long probe_kernel_read(void *dst, const void *src, size_t size) in probe_kernel_read() argument
530 unsigned long addr = (unsigned long)src; in probe_kernel_read()
537 return __probe_kernel_read(dst, src, size); in probe_kernel_read()