Searched defs:dstRow (Results 1 - 6 of 6) sorted by relevance

/external/skia/src/effects/
H A DSkKernel33MaskFilter.cpp50 uint8_t* dstRow = dstImage; local
69 *dstRow++ = SkToU8(value);
/external/skia/src/images/
H A DSkCreateRLEPixelRef.cpp79 uint8_t* dstRow = NULL; local
87 dstRow = (uint8_t*)rlePixels->fStorage.allocThrow(size);
90 size_t packedSize = SkPackBits::Pack8(srcRow, src.width(), dstRow);
92 rlePixels->setPackedAtY(y, dstRow);
94 dstRow += packedSize;
H A DSkScaledBitmapSampler.cpp17 static bool Sample_Gray_D8888(void* SK_RESTRICT dstRow, argument
20 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
28 static bool Sample_RGBx_D8888(void* SK_RESTRICT dstRow, argument
31 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
39 static bool Sample_RGBA_D8888(void* SK_RESTRICT dstRow, argument
42 SkPMColor* SK_RESTRICT dst = (SkPMColor*)dstRow;
55 static bool Sample_Gray_D565(void* SK_RESTRICT dstRow, argument
58 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
66 static bool Sample_Gray_D565_D(void* SK_RESTRICT dstRow, argument
69 uint16_t* SK_RESTRICT dst = (uint16_t*)dstRow;
78 Sample_RGBx_D565(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int, const SkPMColor[]) argument
89 Sample_D565_D565(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int, const SkPMColor[]) argument
101 Sample_RGBx_D565_D(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int y, const SkPMColor[]) argument
115 Sample_Gray_D4444(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int, const SkPMColor[]) argument
127 Sample_Gray_D4444_D(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int y, const SkPMColor[]) argument
140 Sample_RGBx_D4444(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int, const SkPMColor[]) argument
151 Sample_RGBx_D4444_D(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int y, const SkPMColor[]) argument
165 Sample_RGBA_D4444(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int, const SkPMColor[]) argument
181 Sample_RGBA_D4444_D(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int y, const SkPMColor[]) argument
202 Sample_Index_D8888(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int, const SkPMColor ctable[]) argument
217 Sample_Index_D565(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int, const SkPMColor ctable[]) argument
229 Sample_Index_D565_D(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int y, const SkPMColor ctable[]) argument
245 Sample_Index_D4444(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int y, const SkPMColor ctable[]) argument
260 Sample_Index_D4444_D(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int y, const SkPMColor ctable[]) argument
277 Sample_Index_DI(void* SK_RESTRICT dstRow, const uint8_t* SK_RESTRICT src, int width, int deltaSrc, int, const SkPMColor[]) argument
[all...]
/external/skia/src/core/
H A DSkBlitter_ARGB32.cpp31 SkPMColor* dstRow = device.getAddr32(x, y); local
35 proc(dstRow, srcRow, width, alpha);
36 dstRow = (SkPMColor*)((char*)dstRow + device.rowBytes());
403 char* dstRow = (char*)fDevice.getAddr32(x, y); local
416 xfer->xfer32((SkPMColor*)dstRow, span, width, maskRow);
417 dstRow += dstRB;
424 proc(dstRow, maskRow, span, width);
425 dstRow += dstRB;
H A DSkBlitMask_D32.cpp84 SkPMColor* dstRow = (SkPMColor*)dst; local
100 proc(dstRow, srcRow, color, width, opaqueDst);
101 dstRow = (SkPMColor*)((char*)dstRow + dstRB);
193 SkPMColor* SK_RESTRICT dstRow = (SkPMColor*)dst; local
197 blit_lcd32_row(dstRow, srcRow, color, width);
198 dstRow = (SkPMColor*)((char*)dstRow + dstRB);
207 SkPMColor* SK_RESTRICT dstRow = (SkPMColor*)dst; local
211 blit_lcd32_opaque_row(dstRow, srcRo
[all...]
/external/skia/src/gpu/
H A DGrContext.cpp289 void* dstRow = (uint8_t*)dst + j*dstW*bpp; local
291 memcpy((uint8_t*) dstRow + i,

Completed in 277 milliseconds