Searched refs:dstRB (Results 1 - 22 of 22) sorted by relevance

/external/skia/src/utils/
H A DSkTextureCompressor_R11EAC.h23 void DecompressR11EAC(uint8_t* dst, int dstRB, const uint8_t* src, int width, int height);
/external/skia/src/core/
H A DSkConfig8888.cpp129 static void rect_memcpy(void* dst, size_t dstRB, const void* src, size_t srcRB, size_t bytesPerRow, argument
132 SkASSERT(bytesPerRow <= dstRB);
135 dst = (char*)dst + dstRB;
140 static void copy_g8_to_32(void* dst, size_t dstRB, const void* src, size_t srcRB, int w, int h) { argument
148 dst32 = (uint32_t*)((char*)dst32 + dstRB);
153 static void copy_32_to_g8(void* dst, size_t dstRB, const void* src, size_t srcRB, argument
177 dst8 += dstRB;
181 bool SkPixelInfo::CopyPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, argument
197 dstPI.fRowBytes = dstRB;
225 rect_memcpy(dstPixels, dstRB, srcPixel
[all...]
H A DSkSpriteBlitter_ARGB32.cpp42 size_t dstRB = fDevice->rowBytes(); variable
49 dst = (uint32_t* SK_RESTRICT)((char*)dst + dstRB);
130 size_t dstRB = fDevice->rowBytes(); variable
149 dst = (uint32_t* SK_RESTRICT)((char*)dst + dstRB);
177 size_t dstRB = fDevice->rowBytes(); variable
195 dst = (SkPMColor* SK_RESTRICT)((char*)dst + dstRB);
224 size_t dstRB = fDevice->rowBytes(); variable
229 dst = (SkPMColor* SK_RESTRICT)((char*)dst + dstRB);
253 size_t dstRB = fDevice->rowBytes(); variable
258 dst = (SkPMColor* SK_RESTRICT)((char*)dst + dstRB);
[all...]
H A DSkBlitMask.h27 * but each scanline is offset by dstRB (rowbytes) and srcRB respectively.
29 typedef void (*ColorProc)(void* dst, size_t dstRB,
H A DSkSpriteBlitterTemplate.h25 size_t dstRB = fDevice->rowBytes(); local
50 dst = (SkSPRITE_DST_TYPE* SK_RESTRICT)((char*)dst + dstRB);
H A DSkBlitMask_D32.cpp12 static void D32_A8_Color(void* SK_RESTRICT dst, size_t dstRB, argument
16 size_t dstOffset = dstRB - (width << 2);
33 static void D32_A8_Opaque(void* SK_RESTRICT dst, size_t dstRB, argument
41 dstRB -= (width << 2);
49 device = (uint32_t*)((char*)device + dstRB);
54 static void D32_A8_Black(void* SK_RESTRICT dst, size_t dstRB, argument
61 dstRB -= (width << 2);
69 device = (uint32_t*)((char*)device + dstRB);
87 static void D32_LCD16_Proc(void* SK_RESTRICT dst, size_t dstRB, argument
108 dstRow = (SkPMColor*)((char*)dstRow + dstRB);
[all...]
H A DSkScalerContext.cpp262 size_t dstRB = dst.fRowBytes; local
322 dstP = (uint16_t*)((char*)dstP + dstRB);
380 int dstRB = mask.fRowBytes; local
389 dstRB = 0; // signals we need a copy
399 dstRB = 0; // signals we need a copy
411 if (0 == dstRB) {
418 bm.installPixels(info, mask.fImage, dstRB);
454 int dstRB = dst.fRowBytes; local
462 for (int x = width; x < dstRB; ++x) {
465 dstRow += dstRB;
560 int dstRB = origGlyph.rowBytes(); local
[all...]
H A DSkBlitter_A8.cpp396 const size_t dstRB = fDevice.rowBytes(); local
399 dst += dstRB;
405 const size_t dstRB = fDevice.rowBytes(); local
408 dst += dstRB;
423 const size_t dstRB = fDevice.rowBytes(); local
427 dst += dstRB;
H A DSkSpriteBlitter_RGB16.cpp61 size_t dstRB = fDevice->rowBytes(); variable
66 dst = (uint16_t*)((char*)dst + dstRB);
288 size_t dstRB = fDevice->rowBytes(); variable
296 dst = (uint16_t* SK_RESTRICT)((char*)dst + dstRB);
H A DSkBlitter_RGB16.cpp715 size_t dstRB = fDevice.rowBytes(); local
726 dst = (uint16_t*)((char*)dst + dstRB);
734 dst = (uint16_t*)((char*)dst + dstRB);
744 dst = (uint16_t*)((char*)dst + dstRB);
751 dst = (uint16_t*)((char*)dst + dstRB);
856 size_t dstRB = fDevice.rowBytes(); local
863 dst = (uint16_t*)((char*)dst + dstRB);
870 dst = (uint16_t*)((char*)dst + dstRB);
H A DSkBitmap.cpp869 bool SkBitmap::readPixels(const SkImageInfo& requestedDstInfo, void* dstPixels, size_t dstRB, argument
874 if (NULL == dstPixels || dstRB < requestedDstInfo.minRowBytes()) {
897 dstPixels = ((char*)dstPixels - y * dstRB - x * dstInfo.bytesPerPixel());
911 return SkPixelInfo::CopyPixels(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, this->rowBytes(),
H A DSkBlitter_ARGB32.cpp562 const size_t dstRB = fDevice.rowBytes(); local
574 dstRow += dstRB;
582 dstRow += dstRB;
H A DSkAAClip.cpp2128 const size_t dstRB = dstMask->fRowBytes; local
2155 dst += dstRB;
/external/skia/src/opts/
H A DSkBlitMask_opts_arm_neon.cpp5 static void D32_A8_Black_neon(void* SK_RESTRICT dst, size_t dstRB, argument
12 dstRB -= (width << 2);
35 device = (uint32_t*)((char*)device + dstRB);
41 static void D32_A8_Opaque_Color_neon(void* SK_RESTRICT dst, size_t dstRB, argument
50 dstRB -= (width << 2);
98 device = (uint32_t*)((char*)device + dstRB);
104 static void D32_A8_Opaque_neon(void* SK_RESTRICT dst, size_t dstRB, argument
107 D32_A8_Opaque_Color_neon<false>(dst, dstRB, maskPtr, maskRB, color, width, height);
110 static void D32_A8_Color_neon(void* SK_RESTRICT dst, size_t dstRB, argument
113 D32_A8_Opaque_Color_neon<true>(dst, dstRB, maskPt
[all...]
H A DSkBlitRow_opts_SSE2.h28 void SkARGB32_A8_BlitMask_SSE2(void* device, size_t dstRB, const void* mask,
H A DSkBlitRow_opts_SSE2.cpp304 void SkARGB32_A8_BlitMask_SSE2(void* device, size_t dstRB, const void* maskPtr, argument
308 size_t dstOffset = dstRB - (width << 2);
/external/skia/src/gpu/
H A DGrFontScaler.cpp153 int dstRB, void* dst) {
174 expand_bits(bytes, bits, width, height, dstRB, srcRB);
179 expand_bits(rgb565, bits, width, height, dstRB, srcRB);
185 } else if (srcRB == dstRB) {
186 memcpy(dst, src, dstRB * height);
192 dst = (char*)dst + dstRB;
151 getPackedGlyphImage(GrGlyph::PackedID packed, int width, int height, int dstRB, void* dst) argument
/external/skia/src/ports/
H A DSkFontHost_FreeType_common.cpp91 const size_t dstRB = mask.fRowBytes; local
102 dst = (uint16_t*)((char*)dst + dstRB);
111 dst = (uint16_t*)((char*)dst + dstRB);
135 dst = (uint16_t*)((char*)dst + dstRB);
153 dst = (uint16_t*)((char*)dst + dstRB);
H A DSkScalerContext_win_dw.cpp541 const size_t dstRB = (width + 7) >> 3; local
573 dst += dstRB;
579 const size_t dstRB = glyph.rowBytes(); local
590 dst = (uint8_t*)((char*)dst + dstRB);
597 const size_t dstRB = glyph.rowBytes(); local
615 dst = (uint16_t*)((char*)dst + dstRB);
H A DSkFontHost_win.cpp1144 const size_t dstRB = (width + 7) >> 3; local
1145 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1180 dst -= dstRB;
1185 uint8_t* last = (uint8_t*)((char*)glyph.fImage + glyph.fHeight * dstRB - 1);
1195 const size_t dstRB = glyph.rowBytes(); local
1197 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1207 dst -= dstRB;
1214 const size_t dstRB = glyph.rowBytes(); local
1216 uint16_t* SK_RESTRICT dst = (uint16_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1223 dst = (uint16_t*)((char*)dst - dstRB);
1276 size_t dstRB = glyph.rowBytes(); local
[all...]
H A DSkFontHost_mac.cpp1179 size_t dstRB = glyph.rowBytes(); local
1187 dst += dstRB;
1209 size_t dstRB = glyph.rowBytes(); local
1217 dst = (uint16_t*)((char*)dst + dstRB);
1295 size_t dstRB = glyph.rowBytes(); local
1300 dst += dstRB;
1305 size_t dstRB = glyph.rowBytes(); local
1312 dst = (SkPMColor*)((char*)dst + dstRB);
/external/skia/src/effects/
H A DSkBlurMask.cpp419 static void merge_src_with_blur(uint8_t dst[], int dstRB, argument
423 dstRB -= sw;
433 dst += dstRB;

Completed in 403 milliseconds