Lines Matching refs:dstRow
25 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_small_index_to_index() argument
28 uint8_t* SK_RESTRICT dst = (uint8_t*) dstRow; in swizzle_small_index_to_index()
48 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_small_index_to_n32() argument
51 SkPMColor* SK_RESTRICT dst = (SkPMColor*) dstRow; in swizzle_small_index_to_n32()
74 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_index_to_index() argument
77 uint8_t* SK_RESTRICT dst = (uint8_t*) dstRow; in swizzle_index_to_index()
90 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_index_to_n32() argument
93 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_index_to_n32()
104 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_index_to_n32_skipZ() argument
107 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_index_to_n32_skipZ()
124 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_gray_to_n32() argument
127 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_gray_to_n32()
135 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_gray_to_gray() argument
137 memcpy(dstRow, src, width); in swizzle_gray_to_gray()
144 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_bgrx_to_n32() argument
147 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_bgrx_to_n32()
158 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_bgra_to_n32_unpremul() argument
161 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_bgra_to_n32_unpremul()
173 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_bgra_to_n32_premul() argument
176 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_bgra_to_n32_premul()
189 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_rgbx_to_n32() argument
192 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgbx_to_n32()
201 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_rgba_to_n32_premul() argument
204 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgba_to_n32_premul()
216 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_rgba_to_n32_unpremul() argument
219 uint32_t* SK_RESTRICT dst = reinterpret_cast<uint32_t*>(dstRow); in swizzle_rgba_to_n32_unpremul()
231 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, in swizzle_rgba_to_n32_premul_skipZ() argument
234 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgba_to_n32_premul_skipZ()
486 uint32_t* dstRow = (uint32_t*) dstStartRow; in Fill() local
489 dstRow[col] = color; in Fill()
491 dstRow = SkTAddOffset<uint32_t>(dstRow, dstRowBytes); in Fill()