Lines Matching refs:dst

25 bitfill_aligned(struct fb_info *p, unsigned long *dst, int dst_idx,  in bitfill_aligned()  argument
40 *dst = comp(pat, *dst, first); in bitfill_aligned()
46 *dst = comp(pat, *dst, first); in bitfill_aligned()
47 dst++; in bitfill_aligned()
53 memset_l(dst, pat, n); in bitfill_aligned()
54 dst += n; in bitfill_aligned()
58 *dst = comp(pat, *dst, last); in bitfill_aligned()
71 bitfill_unaligned(struct fb_info *p, unsigned long *dst, int dst_idx, in bitfill_unaligned() argument
86 *dst = comp(pat, *dst, first); in bitfill_unaligned()
91 *dst = comp(pat, *dst, first); in bitfill_unaligned()
92 dst++; in bitfill_unaligned()
100 *dst++ = pat; in bitfill_unaligned()
102 *dst++ = pat; in bitfill_unaligned()
104 *dst++ = pat; in bitfill_unaligned()
106 *dst++ = pat; in bitfill_unaligned()
111 *dst++ = pat; in bitfill_unaligned()
117 *dst = comp(pat, *dst, last); in bitfill_unaligned()
125 bitfill_aligned_rev(struct fb_info *p, unsigned long *dst, int dst_idx, in bitfill_aligned_rev() argument
141 *dst = comp(*dst ^ val, *dst, first); in bitfill_aligned_rev()
146 *dst = comp(*dst ^ val, *dst, first); in bitfill_aligned_rev()
147 dst++; in bitfill_aligned_rev()
154 *dst++ ^= val; in bitfill_aligned_rev()
155 *dst++ ^= val; in bitfill_aligned_rev()
156 *dst++ ^= val; in bitfill_aligned_rev()
157 *dst++ ^= val; in bitfill_aligned_rev()
158 *dst++ ^= val; in bitfill_aligned_rev()
159 *dst++ ^= val; in bitfill_aligned_rev()
160 *dst++ ^= val; in bitfill_aligned_rev()
161 *dst++ ^= val; in bitfill_aligned_rev()
165 *dst++ ^= val; in bitfill_aligned_rev()
168 *dst = comp(*dst ^ val, *dst, last); in bitfill_aligned_rev()
181 bitfill_unaligned_rev(struct fb_info *p, unsigned long *dst, int dst_idx, in bitfill_unaligned_rev() argument
197 *dst = comp(*dst ^ pat, *dst, first); in bitfill_unaligned_rev()
203 *dst = comp(*dst ^ pat, *dst, first); in bitfill_unaligned_rev()
204 dst++; in bitfill_unaligned_rev()
212 *dst++ ^= pat; in bitfill_unaligned_rev()
214 *dst++ ^= pat; in bitfill_unaligned_rev()
216 *dst++ ^= pat; in bitfill_unaligned_rev()
218 *dst++ ^= pat; in bitfill_unaligned_rev()
223 *dst ^= pat; in bitfill_unaligned_rev()
229 *dst = comp(*dst ^ pat, *dst, last); in bitfill_unaligned_rev()
239 unsigned long *dst; in sys_fillrect() local
253 dst = (unsigned long *)((unsigned long)p->screen_base & ~(bytes-1)); in sys_fillrect()
261 void (*fill_op32)(struct fb_info *p, unsigned long *dst, in sys_fillrect()
279 dst += dst_idx >> (ffs(bits) - 1); in sys_fillrect()
281 fill_op32(p, dst, dst_idx, pat, width*bpp, bits); in sys_fillrect()
286 void (*fill_op)(struct fb_info *p, unsigned long *dst, in sys_fillrect()
309 dst += dst_idx / bits; in sys_fillrect()
314 fill_op(p, dst, dst_idx, pat2, left, right, in sys_fillrect()