Lines Matching refs:dst
165 NAME(copycols)(cookie, row, src, dst, num)
167 int row, src, dst, num; variable
176 if (dst == src)
191 if (dst < 0) {
192 num += dst;
193 dst = 0;
196 if ((dst + num) > ri->ri_cols)
197 num = ri->ri_cols - dst;
205 dst *= cnt;
209 db = dst & 31;
214 drp = (int32_t *)(ri->ri_bits + row + ((dst >> 3) & ~3));
228 rmask = rasops_lmask[(dst + num) & 31];
230 rnum = (dst + num) & 31;
233 full = (num - (32 - (dst & 31))) >> 5;
237 if (src < dst && src + num > dst) {
241 dst = dst + num;
243 drp = (int32_t *)(ri->ri_bits + row + ((dst >> 3) & ~3));
247 db = dst & 31;
285 drp = (int32_t *)(ri->ri_bits + row + ((dst >> 3) & ~3));
286 db = dst & 31;