Lines Matching refs:dx
623 u32 fgcolor, bgcolor, dx, dy, width, height, vxres, vyres, pixelmask; local
632 dx = image->dx;
645 if (dx > vxres || dy > vyres)
647 if (dx + width > vxres)
648 width = vxres - dx;
678 pos += dx;
682 pos += dx * 4;
836 u32 color, dx, dy, width, height, vxres, vyres; local
842 dx = image->dx;
851 if (dx > vxres || dy > vyres)
853 if (dx + width > vxres)
854 width = vxres - dx;
861 pos = dy * line_length + (dx * 4);
924 u32 dx, dy, width, height, vxres, vyres, color; local
929 dx = rect->dx;
940 if (dx > vxres || dy > vyres || !width || !height)
942 if (dx + width > vxres)
943 width = vxres - dx;
947 pos = dy * line_length + dx * (is8bpp ? 1 : 4);
1144 copyarea_8bpp(struct fb_info *info, u32 dx, u32 dy, u32 sx, u32 sy, argument
1157 if ((dx | sx | width) & 7) {
1168 backward = dy == sy && dx > sx && dx < sx + width;
1172 depos = dy * line_length + dx;
1253 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1256 dx = area->dx;
1267 if (dx > vxres || sx > vxres || dy > vyres || sy > vyres)
1271 if (dx + width > vxres)
1272 width = vxres - dx;
1297 copyarea_8bpp(info, dx, dy, sx, sy, height,