• Home
  • Raw
  • Download

Lines Matching refs:dst

81 	u32 __iomem *dst, *dst2;  in color_imageblit()  local
92 dst = (u32 __iomem *) dst1; in color_imageblit()
99 val = FB_READL(dst) & start_mask; in color_imageblit()
111 FB_WRITEL(val, dst++); in color_imageblit()
124 FB_WRITEL((FB_READL(dst) & end_mask) | val, dst); in color_imageblit()
144 u32 __iomem *dst, *dst2; in slow_imageblit() local
160 dst = (u32 __iomem *) dst1; in slow_imageblit()
167 val = FB_READL(dst) & start_mask; in slow_imageblit()
178 FB_WRITEL(val, dst++); in slow_imageblit()
192 FB_WRITEL((FB_READL(dst) & end_mask) | val, dst); in slow_imageblit()
223 u32 __iomem *dst; in fast_imageblit() local
261 dst = (u32 __iomem *)dst1; in fast_imageblit()
273 FB_WRITEL(colortab[(*src >> 4) & bit_mask], dst++); in fast_imageblit()
274 FB_WRITEL(colortab[(*src >> 0) & bit_mask], dst++); in fast_imageblit()
279 FB_WRITEL(colortab[(*src >> 6) & bit_mask], dst++); in fast_imageblit()
280 FB_WRITEL(colortab[(*src >> 4) & bit_mask], dst++); in fast_imageblit()
281 FB_WRITEL(colortab[(*src >> 2) & bit_mask], dst++); in fast_imageblit()
282 FB_WRITEL(colortab[(*src >> 0) & bit_mask], dst++); in fast_imageblit()
287 FB_WRITEL(colortab[(*src >> 7) & bit_mask], dst++); in fast_imageblit()
288 FB_WRITEL(colortab[(*src >> 6) & bit_mask], dst++); in fast_imageblit()
289 FB_WRITEL(colortab[(*src >> 5) & bit_mask], dst++); in fast_imageblit()
290 FB_WRITEL(colortab[(*src >> 4) & bit_mask], dst++); in fast_imageblit()
291 FB_WRITEL(colortab[(*src >> 3) & bit_mask], dst++); in fast_imageblit()
292 FB_WRITEL(colortab[(*src >> 2) & bit_mask], dst++); in fast_imageblit()
293 FB_WRITEL(colortab[(*src >> 1) & bit_mask], dst++); in fast_imageblit()
294 FB_WRITEL(colortab[(*src >> 0) & bit_mask], dst++); in fast_imageblit()
306 FB_WRITEL(colortab[(*src >> shift) & bit_mask], dst++); in fast_imageblit()