Lines Matching refs:to
7 /* Let gcc decide whether to inline or use the out of line functions */
33 static __always_inline void *__memcpy(void *to, const void *from, size_t n)
43 : "0" (n / 4), "g" (n), "1" ((long)to), "2" ((long)from)
45 return to;
52 static __always_inline void *__constant_memcpy(void *to, const void *from,
57 return to;
61 *(char *)to = *(char *)from;
62 return to;
64 *(short *)to = *(short *)from;
65 return to;
67 *(int *)to = *(int *)from;
68 return to;
70 *(short *)to = *(short *)from;
71 *((char *)to + 2) = *((char *)from + 2);
72 return to;
74 *(int *)to = *(int *)from;
75 *((char *)to + 4) = *((char *)from + 4);
76 return to;
78 *(int *)to = *(int *)from;
79 *((short *)to + 2) = *((short *)from + 2);
80 return to;
82 *(int *)to = *(int *)from;
83 *((int *)to + 1) = *((int *)from + 1);
84 return to;
88 edi = (long)to;
123 return to;
129 return to;
135 return to;
141 return to;
176 /* we might want to write optimized versions of these later */
179 /* Added by Gertjan van Wingerde to make minix and sysv module work */