Searched defs:dstRB (Results 1 - 14 of 14) sorted by relevance

/external/skia/src/core/
H A DSkSpriteBlitterTemplate.h25 unsigned dstRB = fDevice->rowBytes(); local
50 dst = (SkSPRITE_DST_TYPE* SK_RESTRICT)((char*)dst + dstRB);
H A DSkBlitter_ARGB32.cpp404 const size_t dstRB = fDevice.rowBytes(); local
417 dstRow += dstRB;
425 dstRow += dstRB;
H A DSkSpriteBlitter_ARGB32.cpp42 size_t dstRB = fDevice->rowBytes(); local
49 dst = (uint32_t* SK_RESTRICT)((char*)dst + dstRB);
130 unsigned dstRB = fDevice->rowBytes(); local
149 dst = (uint32_t* SK_RESTRICT)((char*)dst + dstRB);
177 unsigned dstRB = fDevice->rowBytes(); local
195 dst = (SkPMColor* SK_RESTRICT)((char*)dst + dstRB);
224 unsigned dstRB = fDevice->rowBytes(); local
229 dst = (SkPMColor* SK_RESTRICT)((char*)dst + dstRB);
253 unsigned dstRB = fDevice->rowBytes(); local
258 dst = (SkPMColor* SK_RESTRICT)((char*)dst + dstRB);
[all...]
H A DSkSpriteBlitter_RGB16.cpp61 unsigned dstRB = fDevice->rowBytes(); local
66 dst = (uint16_t*)((char*)dst + dstRB);
288 unsigned dstRB = fDevice->rowBytes(); local
296 dst = (uint16_t* SK_RESTRICT)((char*)dst + dstRB);
H A DSkBlitMask_D32.cpp5 static void D32_A8_Color(void* SK_RESTRICT dst, size_t dstRB, argument
9 size_t dstOffset = dstRB - (width << 2);
26 static void D32_A8_Opaque(void* SK_RESTRICT dst, size_t dstRB, argument
34 dstRB -= (width << 2);
42 device = (uint32_t*)((char*)device + dstRB);
47 static void D32_A8_Black(void* SK_RESTRICT dst, size_t dstRB, argument
54 dstRB -= (width << 2);
62 device = (uint32_t*)((char*)device + dstRB);
80 static void D32_LCD16_Proc(void* SK_RESTRICT dst, size_t dstRB, argument
101 dstRow = (SkPMColor*)((char*)dstRow + dstRB);
189 D32_LCD32_Blend(void* SK_RESTRICT dst, size_t dstRB, const void* SK_RESTRICT mask, size_t maskRB, SkColor color, int width, int height) argument
203 D32_LCD32_Opaque(void* SK_RESTRICT dst, size_t dstRB, const void* SK_RESTRICT mask, size_t maskRB, SkColor color, int width, int height) argument
[all...]
H A DSkScalerContext.cpp361 size_t dstRB = dst.fRowBytes; local
367 dstP = (uint16_t*)((char*)dstP + dstRB);
396 size_t dstRB = dst.fRowBytes; local
405 dstP = (uint16_t*)((char*)dstP + dstRB);
416 size_t dstRB = dst.fRowBytes; local
426 dstP = (SkPMColor*)((char*)dstP + dstRB);
438 int dstRB = mask.fRowBytes; local
458 dstRB = 0; // signals we need a copy
469 bm.setConfig(config, dstW, dstH, dstRB);
471 if (0 == dstRB) {
558 int dstRB = origGlyph.rowBytes(); local
[all...]
H A DSkBlitter_RGB16.cpp717 size_t dstRB = fDevice.rowBytes(); local
728 dst = (uint16_t*)((char*)dst + dstRB);
736 dst = (uint16_t*)((char*)dst + dstRB);
746 dst = (uint16_t*)((char*)dst + dstRB);
753 dst = (uint16_t*)((char*)dst + dstRB);
858 size_t dstRB = fDevice.rowBytes(); local
865 dst = (uint16_t*)((char*)dst + dstRB);
872 dst = (uint16_t*)((char*)dst + dstRB);
/external/skia/src/gpu/
H A DGrAtlas.cpp98 const size_t dstRB = dstW * bpp; local
99 uint8_t* dst = (uint8_t*)storage.reset(dstH * dstRB);
100 Gr_bzero(dst, dstRB); // zero top row
101 dst += dstRB;
109 Gr_bzero(dst, dstRB); // zero bottom row
H A DSkGrFontScaler.cpp127 int dstRB, void* dst) {
146 bytes += dstRB;
148 } else if (srcRB == dstRB) {
149 memcpy(dst, src, dstRB * height);
155 dst = (char*)dst + dstRB;
125 getPackedGlyphImage(GrGlyph::PackedID packed, int width, int height, int dstRB, void* dst) argument
/external/skia/src/effects/
H A DSkBlurMask.cpp491 static void merge_src_with_blur(uint8_t dst[], int dstRB, argument
495 dstRB -= sw;
505 dst += dstRB;
/external/skia/src/opts/
H A DSkBlitRow_opts_SSE2.cpp417 void SkARGB32_A8_BlitMask_SSE2(void* device, size_t dstRB, const void* maskPtr, argument
421 size_t dstOffset = dstRB - (width << 2);
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp1240 const size_t dstRB = glyph.rowBytes(); local
1250 dst = (uint16_t*)((char*)dst + dstRB);
1259 dst = (uint16_t*)((char*)dst + dstRB);
1283 dst = (uint16_t*)((char*)dst + dstRB);
H A DSkFontHost_win.cpp774 const size_t dstRB = (width + 7) >> 3; local
775 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
810 dst -= dstRB;
816 const size_t dstRB = glyph.rowBytes(); local
818 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
825 dst -= dstRB;
831 const size_t dstRB = glyph.rowBytes(); local
833 uint16_t* SK_RESTRICT dst = (uint16_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
840 dst = (uint16_t*)((char*)dst - dstRB);
846 const size_t dstRB local
917 size_t dstRB = glyph.rowBytes(); local
[all...]
H A DSkFontHost_mac_coretext.cpp1311 size_t dstRB = glyph.rowBytes(); local
1317 dst = (uint32_t*)((char*)dst + dstRB);
1323 size_t dstRB = glyph.rowBytes(); local
1329 dst = (uint16_t*)((char*)dst + dstRB);
1334 size_t dstRB = glyph.rowBytes(); local
1344 dst += dstRB;
1349 size_t dstRB = glyph.rowBytes(); local
1353 dst += dstRB;

Completed in 197 milliseconds