Lines Matching refs:SK_RESTRICT
100 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_grayscale()
103 uint8_t* SK_RESTRICT dst = (uint8_t*) dstRow; in swizzle_bit_to_grayscale()
125 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_n32()
127 SkPMColor* SK_RESTRICT dst = (SkPMColor*) dstRow; in swizzle_bit_to_n32()
148 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_565()
150 uint16_t* SK_RESTRICT dst = (uint16_t*) dstRow; in swizzle_bit_to_565()
171 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_f16()
182 uint64_t* SK_RESTRICT dst = (uint64_t*) dstRow; in swizzle_bit_to_f16()
202 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_small_index_to_565()
223 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_small_index_to_n32()
246 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_index_to_n32()
250 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_index_to_n32()
259 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_index_to_n32_skipZ()
263 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_index_to_n32_skipZ()
274 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_index_to_565()
277 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow; in swizzle_index_to_565()
287 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_gray_to_n32()
291 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_gray_to_n32()
312 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_gray_to_565()
316 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow; in swizzle_gray_to_565()
389 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bgr_to_565()
393 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow; in swizzle_bgr_to_565()
403 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgb_to_rgba()
407 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgb_to_rgba()
415 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgb_to_bgra()
419 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgb_to_bgra()
449 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgb_to_565()
453 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow; in swizzle_rgb_to_565()
463 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgba_to_rgba_premul()
467 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgba_to_rgba_premul()
475 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgba_to_bgra_premul()
479 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_rgba_to_bgra_premul()
509 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgba_to_bgra_unpremul()
513 uint32_t* SK_RESTRICT dst = reinterpret_cast<uint32_t*>(dstRow); in swizzle_rgba_to_bgra_unpremul()
685 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_cmyk_to_rgba()
689 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_cmyk_to_rgba()
701 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_cmyk_to_bgra()
705 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow; in swizzle_cmyk_to_bgra()
739 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_cmyk_to_565()
743 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow; in swizzle_cmyk_to_565()
775 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in SkipLeading8888ZerosThen()
1255 void SkSwizzler::swizzle(void* dst, const uint8_t* SK_RESTRICT src) { in swizzle()