Lines Matching defs:dst

207                          uint8_t *dst, int *dst_size)
210 uint8_t *dst_start = dst;
215 *dst++ = x;
220 *dst_size = dst - dst_start;
272 uint8_t *dst, int dst_stride,
329 uint8_t *out = dst + bx * 3 + (by + j) * dst_stride;
871 uint8_t *dst;
942 dst = c->framebuf + tile_x * c->tile_width * 3 +
946 uint8_t *out = dst;
955 dst += c->framebuf_stride;
993 dst = c->framebuf + tile_x * c->tile_width * 3 +
999 memcpy(dst + i * 3, jpg + i * 3, 3);
1001 dst += c->framebuf_stride;
1006 dst = c->framebuf + tile_x * c->tile_width * 3 +
1009 dst, c->framebuf_stride, NULL, 0, 0, c->swapuv);
1016 uint8_t *dst, int stride,
1034 for (j = 0; j < height; j++, dst += stride, jpeg_tile = FF_PTR_ADD(jpeg_tile, tile_stride)) {
1040 memcpy(dst + i * 3, pal + col * 3, 3);
1042 memcpy(dst + i * 3, jpeg_tile + i * 3, 3);
1062 uint8_t *dst = c->framebuf + tile_x * c->tile_width * 3 +
1077 for (j = 0; j < height; j++, dst += c->framebuf_stride)
1079 memcpy(dst + i * 3, transp, 3);
1083 dst, c->framebuf_stride, NULL, 0, 0, 0);
1118 kempf_restore_buf(c->kempf_buf, dlen, dst, c->framebuf_stride,
1154 kempf_restore_buf(c->kempf_buf, dlen, dst, c->framebuf_stride,
1208 uint8_t *dst;
1259 dst = c->cursor;
1266 dst[0] = !!(bits & 0x80000000);
1267 dst += 4;
1273 dst = c->cursor;
1279 switch (dst[0] * 2 + mask_bit) {
1281 dst[0] = 0xFF;
1282 dst[1] = 0x00;
1283 dst[2] = 0x00;
1284 dst[3] = 0x00;
1287 dst[0] = 0xFF;
1288 dst[1] = 0xFF;
1289 dst[2] = 0xFF;
1290 dst[3] = 0xFF;
1293 dst[0] = 0x00;
1294 dst[1] = 0x00;
1295 dst[2] = 0x00;
1296 dst[3] = 0x00;
1298 dst += 4;
1310 *dst++ = val >> 0;
1311 *dst++ = val >> 8;
1312 *dst++ = val >> 16;
1313 *dst++ = val >> 24;
1326 static void g2m_paint_cursor(G2MContext *c, uint8_t *dst, int stride)
1350 dst += x * 3;
1360 dst += y * stride;
1366 APPLY_ALPHA(dst[i * 3 + 0], cursor[i * 4 + 1], alpha);
1367 APPLY_ALPHA(dst[i * 3 + 1], cursor[i * 4 + 2], alpha);
1368 APPLY_ALPHA(dst[i * 3 + 2], cursor[i * 4 + 3], alpha);
1370 dst += stride;