Lines Matching refs:dst1
53 void *dst1, u32 start_index, u32 pitch_index) in color_imageblit() argument
63 dst2 = dst1; in color_imageblit()
66 dst = dst1; in color_imageblit()
100 dst1 += p->fix.line_length; in color_imageblit()
103 dst1 = (u8 *)((long)dst2 & ~(sizeof(u32) - 1)); in color_imageblit()
112 void *dst1, u32 fgcolor, u32 bgcolor, in slow_imageblit() argument
123 dst2 = dst1; in slow_imageblit()
131 dst = dst1; in slow_imageblit()
166 dst1 += pitch; in slow_imageblit()
170 dst1 = (u8 *)((long)dst2 & ~(sizeof(u32) - 1)); in slow_imageblit()
187 void *dst1, u32 fgcolor, u32 bgcolor) in fast_imageblit() argument
222 dst = dst1; in fast_imageblit()
235 dst1 += p->fix.line_length; in fast_imageblit()
246 void *dst1; in sys_imageblit() local
257 dst1 = (void __force *)p->screen_base + bitstart; in sys_imageblit()
275 fast_imageblit(image, p, dst1, fgcolor, bgcolor); in sys_imageblit()
277 slow_imageblit(image, p, dst1, fgcolor, bgcolor, in sys_imageblit()
280 color_imageblit(image, p, dst1, start_index, pitch_index); in sys_imageblit()