Lines Matching refs:srcp
72 static void _wordcopy_fwd_aligned(long int dstp, long int srcp, size_t len)
77 a0 = ((op_t *) srcp)[0];
78 a1 = ((op_t *) srcp)[1];
79 a2 = ((op_t *) srcp)[2];
80 a3 = ((op_t *) srcp)[3];
81 a4 = ((op_t *) srcp)[4];
82 a5 = ((op_t *) srcp)[5];
83 a6 = ((op_t *) srcp)[6];
84 a7 = ((op_t *) srcp)[7];
94 srcp += 8 * OPSIZ;
99 *(op_t *)dstp = *(op_t *)srcp;
101 srcp += OPSIZ;
112 static void _wordcopy_fwd_dest_aligned(long int dstp, long int srcp,
119 aligned srcp to make it aligned for copy. */
121 sh_1 = 8 * (srcp % OPSIZ);
126 srcp &= -OPSIZ;
127 ap = ((op_t *) srcp)[0];
128 srcp += OPSIZ;
133 a0 = ((op_t *) srcp)[0];
134 a1 = ((op_t *) srcp)[1];
135 a2 = ((op_t *) srcp)[2];
136 a3 = ((op_t *) srcp)[3];
143 srcp += 4 * OPSIZ;
150 a0 = ((op_t *) srcp)[0];
154 srcp += OPSIZ;
163 unsigned long int srcp = (long int) srcpp;
171 BYTE_COPY_FWD(dstp, srcp, (-dstp) % OPSIZ);
176 /* PAGE_COPY_FWD_MAYBE (dstp, srcp, len, len); */
183 WORD_COPY_FWD(dstp, srcp, len, len);
189 BYTE_COPY_FWD(dstp, srcp, len);
197 unsigned long int srcp = (long int) srcpp;
199 BYTE_COPY_FWD(dstp, srcp, len);