Lines Matching refs:SK_RESTRICT
88 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_grayscale()
91 uint8_t* SK_RESTRICT dst = (uint8_t*) dstRow; in swizzle_bit_to_grayscale()
113 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_n32()
115 SkPMColor* SK_RESTRICT dst = (SkPMColor*) dstRow; in swizzle_bit_to_n32()
136 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_565()
138 uint16_t* SK_RESTRICT dst = (uint16_t*) dstRow; in swizzle_bit_to_565()
159 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_f16()
170 uint64_t* SK_RESTRICT dst = (uint64_t*) dstRow; in swizzle_bit_to_f16()
190 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_small_index_to_565()
211 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_small_index_to_n32()
234 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_index_to_n32()
238 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_index_to_n32()
247 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_index_to_n32_skipZ()
251 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_index_to_n32_skipZ()
262 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_index_to_565()
265 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow; in swizzle_index_to_565()
275 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_gray_to_n32()
279 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_gray_to_n32()
300 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_gray_to_565()
304 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow; in swizzle_gray_to_565()
377 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bgr_to_565()
381 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow; in swizzle_bgr_to_565()
391 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgb_to_rgba()
395 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgb_to_rgba()
403 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgb_to_bgra()
407 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgb_to_bgra()
437 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgb_to_565()
441 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow; in swizzle_rgb_to_565()
451 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgba_to_rgba_premul()
455 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgba_to_rgba_premul()
463 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgba_to_bgra_premul()
467 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgba_to_bgra_premul()
497 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgba_to_bgra_unpremul()
501 uint32_t* SK_RESTRICT dst = reinterpret_cast<uint32_t*>(dstRow); in swizzle_rgba_to_bgra_unpremul()
673 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_cmyk_to_rgba()
677 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_cmyk_to_rgba()
689 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_cmyk_to_bgra()
693 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_cmyk_to_bgra()
727 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_cmyk_to_565()
731 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow; in swizzle_cmyk_to_565()
763 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in SkipLeading8888ZerosThen()
1233 void SkSwizzler::swizzle(void* dst, const uint8_t* SK_RESTRICT src) { in swizzle()