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;
34 static bool Sample_RGBx_D8888(void* SK_RESTRICT dstRow,
35 const uint8_t* SK_RESTRICT src,
37 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
51 static bool Sample_RGBA_D8888(void* SK_RESTRICT dstRow,
52 const uint8_t* SK_RESTRICT src,
54 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
65 static bool Sample_RGBA_D8888_Unpremul(void* SK_RESTRICT dstRow,
66 const uint8_t* SK_RESTRICT src,
69 uint32_t* SK_RESTRICT dst = reinterpret_cast<uint32_t*>(dstRow);
80 static bool Sample_RGBA_D8888_SkipZ(void* SK_RESTRICT dstRow,
81 const uint8_t* SK_RESTRICT src,
84 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
114 static bool Sample_Gray_D565(void* SK_RESTRICT dstRow,
115 const uint8_t* SK_RESTRICT src,
117 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
125 static bool Sample_Gray_D565_D(void* SK_RESTRICT dstRow,
126 const uint8_t* SK_RESTRICT src,
128 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
146 static bool Sample_RGBx_D565(void* SK_RESTRICT dstRow,
147 const uint8_t* SK_RESTRICT src,
149 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
157 static bool Sample_RGBx_D565_D(void* SK_RESTRICT dstRow,
158 const uint8_t* SK_RESTRICT src,
161 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
180 static bool Sample_D565_D565(void* SK_RESTRICT dstRow,
181 const uint8_t* SK_RESTRICT src,
183 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
184 uint16_t* SK_RESTRICT castedSrc = (uint16_t*) src;
200 static bool Sample_Gray_D4444(void* SK_RESTRICT dstRow,
201 const uint8_t* SK_RESTRICT src,
203 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
212 static bool Sample_Gray_D4444_D(void* SK_RESTRICT dstRow,
213 const uint8_t* SK_RESTRICT src,
215 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
234 static bool Sample_RGBx_D4444(void* SK_RESTRICT dstRow,
235 const uint8_t* SK_RESTRICT src,
237 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
245 static bool Sample_RGBx_D4444_D(void* SK_RESTRICT dstRow,
246 const uint8_t* SK_RESTRICT src,
268 static bool Sample_RGBA_D4444(void* SK_RESTRICT dstRow,
269 const uint8_t* SK_RESTRICT src,
271 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
284 static bool Sample_RGBA_D4444_SkipZ(void* SK_RESTRICT dstRow,
285 const uint8_t* SK_RESTRICT src,
288 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
304 static bool Sample_RGBA_D4444_D(void* SK_RESTRICT dstRow,
305 const uint8_t* SK_RESTRICT src,
308 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
322 static bool Sample_RGBA_D4444_D_SkipZ(void* SK_RESTRICT dstRow,
323 const uint8_t* SK_RESTRICT src,
326 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
364 static bool Sample_Index_D8888(void* SK_RESTRICT dstRow,
365 const uint8_t* SK_RESTRICT src,
368 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
379 static bool Sample_Index_D8888_SkipZ(void* SK_RESTRICT dstRow,
380 const uint8_t* SK_RESTRICT src,
384 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
409 static bool Sample_Index_D565(void* SK_RESTRICT dstRow,
410 const uint8_t* SK_RESTRICT src,
413 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
421 static bool Sample_Index_D565_D(void* SK_RESTRICT dstRow,
422 const uint8_t* SK_RESTRICT src, int width,
425 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
446 static bool Sample_Index_D4444(void* SK_RESTRICT dstRow,
447 const uint8_t* SK_RESTRICT src, int width,
450 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
461 static bool Sample_Index_D4444_D(void* SK_RESTRICT dstRow,
462 const uint8_t* SK_RESTRICT src, int width,
465 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
478 static bool Sample_Index_D4444_SkipZ(void* SK_RESTRICT dstRow,
479 const uint8_t* SK_RESTRICT src, int width,
482 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
495 static bool Sample_Index_D4444_D_SkipZ(void* SK_RESTRICT dstRow,
496 const uint8_t* SK_RESTRICT src, int width,
499 SkPMColor16* SK_RESTRICT dst = (SkPMColor16*)dstRow;
532 static bool Sample_Index_DI(void* SK_RESTRICT dstRow,
533 const uint8_t* SK_RESTRICT src,
538 uint8_t* SK_RESTRICT dst = (uint8_t*)dstRow;
558 static bool Sample_Gray_DA8(void* SK_RESTRICT dstRow,
559 const uint8_t* SK_RESTRICT src,
736 bool SkScaledBitmapSampler::next(const uint8_t* SK_RESTRICT src) {
748 bool SkScaledBitmapSampler::sampleInterlaced(const uint8_t* SK_RESTRICT src, int srcY) {