Home | History | Annotate | Download | only in core

Lines Matching defs:dst

20 static void S32_src(uint16_t dst[], const SkPMColor src[], int count) {
22 dst[i] = SkPixel32ToPixel16(src[i]);
26 static void S32_srcover(uint16_t dst[], const SkPMColor src[], int count) {
28 dst[i] = SkSrcOver32To16(src[i], dst[i]);
43 uint16_t* SK_RESTRICT dst = fDst.writable_addr16(x, y);
50 S32_srcover(dst, src, width);
52 S32_src(dst, src, width);
55 dst = (uint16_t* SK_RESTRICT)((char*)dst + dstRB);
100 static void S32_src_da8(uint8_t dst[], const SkPMColor src[], int count) {
102 dst[i] = SkGetPackedA32(src[i]);
106 static void S32_srcover_da8(uint8_t dst[], const SkPMColor src[], int count) {
112 dst[i] = 0xFF;
114 dst[i] = a + div255(255 - a, dst[i]);
131 uint8_t* SK_RESTRICT dst = fDst.writable_addr8(x, y);
138 S32_srcover_da8(dst, src, width);
140 S32_src_da8(dst, src, width);
143 dst = (uint8_t* SK_RESTRICT)((char*)dst + dstRB);