Lines Matching refs:dst
477 unsigned stride, unsigned width, unsigned height, uint16_t *dst,
500 dst[j] = src[j];
502 dst[j] = src[j] << 6; /* alpha 10b to 16b */
506 last_pix = dst[j - 1];
508 last_pix = dst[j - 1] << 6; /* alpha 10b to 16b */
511 dst[j] = last_pix;
513 dst += dst_width;
515 last_line = dst - dst_width;
518 dst[j] = last_line[j];
520 dst += dst_width;
525 unsigned stride, unsigned width, unsigned height, uint16_t *dst,
528 subimage_with_fill_template(src, x, y, stride, width, height, dst, dst_width, dst_height, 0, is_interlaced, is_top_field);
533 unsigned stride, unsigned width, unsigned height, uint16_t *dst,
536 subimage_with_fill_template(src, x, y, stride, width, height, dst, dst_width, dst_height, 1, is_interlaced, is_top_field);
805 static void scale_mat(const uint8_t* src, int* dst, int scale)
809 dst[i] = src[i] * scale;