Lines Matching refs:dstWidth

84         void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth,  in swizzle_bit_to_grayscale()  argument
96 for (int x = 1; x < dstWidth; x++) { in swizzle_bit_to_grayscale()
109 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_index() argument
120 for (int x = 1; x < dstWidth; x++) { in swizzle_bit_to_index()
130 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_n32() argument
141 for (int x = 1; x < dstWidth; x++) { in swizzle_bit_to_n32()
153 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_565() argument
164 for (int x = 1; x < dstWidth; x++) { in swizzle_bit_to_565()
176 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bit_to_f16() argument
196 for (int x = 1; x < dstWidth; x++) { in swizzle_bit_to_f16()
207 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_small_index_to_index() argument
218 for (int x = 1; x < dstWidth; x++) { in swizzle_small_index_to_index()
228 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_small_index_to_565() argument
239 for (int x = 1; x < dstWidth; x++) { in swizzle_small_index_to_565()
249 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_small_index_to_n32() argument
260 for (int x = 1; x < dstWidth; x++) { in swizzle_small_index_to_n32()
272 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_index_to_n32() argument
277 for (int x = 0; x < dstWidth; x++) { in swizzle_index_to_n32()
285 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_index_to_n32_skipZ() argument
290 for (int x = 0; x < dstWidth; x++) { in swizzle_index_to_n32_skipZ()
300 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_index_to_565() argument
304 for (int x = 0; x < dstWidth; x++) { in swizzle_index_to_565()
313 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_gray_to_n32() argument
318 for (int x = 0; x < dstWidth; x++) { in swizzle_gray_to_n32()
338 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_gray_to_565() argument
343 for (int x = 0; x < dstWidth; x++) { in swizzle_gray_to_565()
405 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_bgr_to_565() argument
410 for (int x = 0; x < dstWidth; x++) { in swizzle_bgr_to_565()
419 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgb_to_rgba() argument
424 for (int x = 0; x < dstWidth; x++) { in swizzle_rgb_to_rgba()
431 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgb_to_bgra() argument
436 for (int x = 0; x < dstWidth; x++) { in swizzle_rgb_to_bgra()
465 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgb_to_565() argument
470 for (int x = 0; x < dstWidth; x++) { in swizzle_rgb_to_565()
479 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgba_to_rgba_premul() argument
484 for (int x = 0; x < dstWidth; x++) { in swizzle_rgba_to_rgba_premul()
491 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgba_to_bgra_premul() argument
496 for (int x = 0; x < dstWidth; x++) { in swizzle_rgba_to_bgra_premul()
525 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_rgba_to_bgra_unpremul() argument
530 for (int x = 0; x < dstWidth; x++) { in swizzle_rgba_to_bgra_unpremul()
701 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_cmyk_to_rgba() argument
706 for (int x = 0; x < dstWidth; x++) { in swizzle_cmyk_to_rgba()
717 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_cmyk_to_bgra() argument
722 for (int x = 0; x < dstWidth; x++) { in swizzle_cmyk_to_bgra()
755 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in swizzle_cmyk_to_565() argument
760 for (int x = 0; x < dstWidth; x++) { in swizzle_cmyk_to_565()
791 void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int dstWidth, in SkipLeading8888ZerosThen() argument
800 while (dstWidth > 0 && *src32 == 0x00000000) { in SkipLeading8888ZerosThen()
801 dstWidth--; in SkipLeading8888ZerosThen()
805 proc(dst32, (const uint8_t*)src32, dstWidth, bpp, deltaSrc, 0, ctable); in SkipLeading8888ZerosThen()
1208 int dstWidth = srcWidth; in CreateSwizzler() local
1215 dstWidth = srcWidth; in CreateSwizzler()
1221 return new SkSwizzler(fastProc, proc, ctable, srcOffset, srcWidth, dstOffset, dstWidth, in CreateSwizzler()
1226 int srcWidth, int dstOffset, int dstWidth, int srcBPP, int dstBPP) in SkSwizzler() argument
1236 , fDstWidth(dstWidth) in SkSwizzler()
1238 , fAllocatedWidth(dstWidth) in SkSwizzler()