Home | History | Annotate | Download | only in images

Lines Matching refs:SK_RESTRICT

17 static bool Sample_Gray_D8888(void* SK_RESTRICT dstRow,
18 const uint8_t* SK_RESTRICT src,
20 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
33 static bool Sample_RGBx_D8888(void* SK_RESTRICT dstRow,
34 const uint8_t* SK_RESTRICT src,
36 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
49 static bool Sample_RGBA_D8888(void* SK_RESTRICT dstRow,
50 const uint8_t* SK_RESTRICT src,
52 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
63 static bool Sample_RGBA_D8888_Unpremul(void* SK_RESTRICT dstRow,
64 const uint8_t* SK_RESTRICT src,
67 uint32_t* SK_RESTRICT dst = reinterpret_cast<uint32_t*>(dstRow);
78 static bool Sample_RGBA_D8888_SkipZ(void* SK_RESTRICT dstRow,
79 const uint8_t* SK_RESTRICT src,
82 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
111 static bool Sample_Gray_D565(void* SK_RESTRICT dstRow,
112 const uint8_t* SK_RESTRICT src,
114 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
122 static bool Sample_Gray_D565_D(void* SK_RESTRICT dstRow,
123 const uint8_t* SK_RESTRICT src,
125 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
142 static bool Sample_RGBx_D565(void* SK_RESTRICT dstRow,
143 const uint8_t* SK_RESTRICT src,
145 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
153 static bool Sample_RGBx_D565_D(void* SK_RESTRICT dstRow,
154 const uint8_t* SK_RESTRICT src,
157 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
175 static bool Sample_D565_D565(void* SK_RESTRICT dstRow,
176 const uint8_t* SK_RESTRICT src,
178 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
179 uint16_t* SK_RESTRICT castedSrc = (uint16_t*) src;
194 static bool Sample_Gray_D4444(void* SK_RESTRICT dstRow,
195 const uint8_t* SK_RESTRICT src,
197 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
206 static bool Sample_Gray_D4444_D(void* SK_RESTRICT dstRow,
207 const uint8_t* SK_RESTRICT src,
209 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
227 static bool Sample_RGBx_D4444(void* SK_RESTRICT dstRow,
228 const uint8_t* SK_RESTRICT src,
230 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
238 static bool Sample_RGBx_D4444_D(void* SK_RESTRICT dstRow,
239 const uint8_t* SK_RESTRICT src,
260 static bool Sample_RGBA_D4444(void* SK_RESTRICT dstRow,
261 const uint8_t* SK_RESTRICT src,
263 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
276 static bool Sample_RGBA_D4444_SkipZ(void* SK_RESTRICT dstRow,
277 const uint8_t* SK_RESTRICT src,
280 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
296 static bool Sample_RGBA_D4444_D(void* SK_RESTRICT dstRow,
297 const uint8_t* SK_RESTRICT src,
300 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
314 static bool Sample_RGBA_D4444_D_SkipZ(void* SK_RESTRICT dstRow,
315 const uint8_t* SK_RESTRICT src,
318 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
356 static bool Sample_Index_D8888(void* SK_RESTRICT dstRow,
357 const uint8_t* SK_RESTRICT src,
360 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
371 static bool Sample_Index_D8888_SkipZ(void* SK_RESTRICT dstRow,
372 const uint8_t* SK_RESTRICT src,
376 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
401 static bool Sample_Index_D565(void* SK_RESTRICT dstRow,
402 const uint8_t* SK_RESTRICT src,
405 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
413 static bool Sample_Index_D565_D(void* SK_RESTRICT dstRow,
414 const uint8_t* SK_RESTRICT src, int width,
417 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
437 static bool Sample_Index_D4444(void* SK_RESTRICT dstRow,
438 const uint8_t* SK_RESTRICT src, int width,
441 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
452 static bool Sample_Index_D4444_D(void* SK_RESTRICT dstRow,
453 const uint8_t* SK_RESTRICT src, int width,
456 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
469 static bool Sample_Index_D4444_SkipZ(void* SK_RESTRICT dstRow,
470 const uint8_t* SK_RESTRICT src, int width,
473 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
486 static bool Sample_Index_D4444_D_SkipZ(void* SK_RESTRICT dstRow,
487 const uint8_t* SK_RESTRICT src, int width,
490 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
523 static bool Sample_Index_DI(void* SK_RESTRICT dstRow,
524 const uint8_t* SK_RESTRICT src,
529 uint8_t* SK_RESTRICT dst = (uint8_t*)dstRow;
548 static bool Sample_Gray_DA8(void* SK_RESTRICT dstRow,
549 const uint8_t* SK_RESTRICT src,
713 bool SkScaledBitmapSampler::next(const uint8_t* SK_RESTRICT src) {