Lines Matching refs:dst2
167 uint16_t *dst2; in put_cursor() local
169 dst2 = (uint16_t*)dst; in put_cursor()
171 dst2[i] = (dst2[i] & cd[i]) ^ msk[i]; in put_cursor()
178 uint32_t *dst2; in put_cursor() local
180 dst2 = (uint32_t*)dst; in put_cursor()
182 dst2[i] = (dst2[i] & cd[i]) ^ msk[i]; in put_cursor()
203 uint16_t *dst2; in paint_rect() local
205 dst2 = (uint16_t*)dst; in paint_rect()
207 *dst2++ = color; in paint_rect()
211 uint32_t *dst2; in paint_rect() local
213 dst2 = (uint32_t*)dst; in paint_rect()
215 dst2[i] = color; in paint_rect()
251 uint8_t *dst2; in decode_hextile() local
255 dst2 = dst; in decode_hextile()
259 for (i = 0; i < w; i += 16, dst2 += 16 * bpp) { in decode_hextile()
272 paint_raw(dst2, bw, bh, gb, bpp, c->bigendian, stride); in decode_hextile()
283 paint_rect(dst2, 0, 0, bw, bh, bg, bpp, stride); in decode_hextile()
306 paint_rect(dst2, rect_x, rect_y, in decode_hextile()