• Home
  • Raw
  • Download

Lines Matching refs:dst

56 	u32 *dst, *dst2;  in color_imageblit()  local
66 dst = dst1; in color_imageblit()
73 val = *dst & start_mask; in color_imageblit()
85 *dst++ = val; in color_imageblit()
97 *dst &= end_mask; in color_imageblit()
98 *dst |= val; in color_imageblit()
116 u32 *dst, *dst2; in slow_imageblit() local
131 dst = dst1; in slow_imageblit()
138 val = *dst & start_mask; in slow_imageblit()
149 *dst++ = val; in slow_imageblit()
162 *dst &= end_mask; in slow_imageblit()
163 *dst |= val; in slow_imageblit()
193 u32 *dst; in fast_imageblit() local
231 dst = dst1; in fast_imageblit()
243 *dst++ = colortab[(*src >> 4) & bit_mask]; in fast_imageblit()
244 *dst++ = colortab[(*src >> 0) & bit_mask]; in fast_imageblit()
249 *dst++ = colortab[(*src >> 6) & bit_mask]; in fast_imageblit()
250 *dst++ = colortab[(*src >> 4) & bit_mask]; in fast_imageblit()
251 *dst++ = colortab[(*src >> 2) & bit_mask]; in fast_imageblit()
252 *dst++ = colortab[(*src >> 0) & bit_mask]; in fast_imageblit()
257 *dst++ = colortab[(*src >> 7) & bit_mask]; in fast_imageblit()
258 *dst++ = colortab[(*src >> 6) & bit_mask]; in fast_imageblit()
259 *dst++ = colortab[(*src >> 5) & bit_mask]; in fast_imageblit()
260 *dst++ = colortab[(*src >> 4) & bit_mask]; in fast_imageblit()
261 *dst++ = colortab[(*src >> 3) & bit_mask]; in fast_imageblit()
262 *dst++ = colortab[(*src >> 2) & bit_mask]; in fast_imageblit()
263 *dst++ = colortab[(*src >> 1) & bit_mask]; in fast_imageblit()
264 *dst++ = colortab[(*src >> 0) & bit_mask]; in fast_imageblit()
276 *dst++ = colortab[(*src >> shift) & bit_mask]; in fast_imageblit()