/external/skia/include/core/ |
SkMask.h | 59 uint32_t fRowBytes; 86 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes; 97 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes; 109 uint16_t* row = (uint16_t*)(fImage + (y - fBounds.fTop) * fRowBytes); 120 return reinterpret_cast<const uint32_t*>(fImage + SkAlign4(fRowBytes * fBounds.height())) +
|
SkBitmap.h | 117 int rowBytes() const { return fRowBytes; } 136 int rowBytesAsPixels() const { return fRowBytes >> (fBytesPerPixel >> 1); } 146 size_t getSize() const { return fHeight * fRowBytes; } 160 size.setMul(fHeight, fRowBytes); 586 uint32_t fRowBytes; 773 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2)); 780 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1)); 787 return (uint8_t*)fPixels + y * fRowBytes + x; 795 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)]; 803 return (uint8_t*)fPixels + y * fRowBytes + (x >> 3) [all...] |
/external/skia/src/core/ |
SkMask.cpp | 34 return safeMul32(fBounds.height(), fRowBytes);
|
SkBitmap.cpp | 38 uint32_t fRowBytes; 148 SkTSwap(fRowBytes, other.fRowBytes); 279 fRowBytes = rowBytes; 450 return (fHeight ? ((fHeight - 1) * fRowBytes) + 455 return ComputeSafeSize64(getConfig(), fWidth, fHeight, fRowBytes); 462 dstRowBytes = fRowBytes; 470 if (static_cast<uint32_t>(dstRowBytes) == fRowBytes) { 495 row++, srcP += fRowBytes, dstP += dstRowBytes) { 508 srcRowBytes = fRowBytes; [all...] |
SkBlitBWMaskTemplate.h | 41 unsigned mask_rowBytes = srcMask.fRowBytes;
|
SkBlitter_ARGB32.cpp | 108 srcRow = (const uint16_t*)((const char*)srcRow + mask.fRowBytes); 134 srcRow = (const SkPMColor*)((const char*)srcRow + mask.fRowBytes); 273 mask.getAddr(x, y), mask.fRowBytes, 331 mask.getAddr(x, y), mask.fRowBytes, fColor, width, height); 439 unsigned maskRB = mask.fRowBytes - width;
|
SkScan_AntiPath.cpp | 257 fMask.fRowBytes = ir.width(); 265 memset(fStorage, 0, fMask.fBounds.height() * fMask.fRowBytes + 1); 372 uint8_t* row = fMask.fImage + iy * fMask.fRowBytes + (x >> SHIFT);
|
SkBlitter_A8.cpp | 178 alpha += mask.fRowBytes; 351 alpha += mask.fRowBytes;
|
SkDraw.cpp | [all...] |
SkScalerContext.cpp | 40 mask->fRowBytes = this->rowBytes(); 473 int srcRB = dstM.fRowBytes;
|
SkBlitter_RGB16.cpp | 216 unsigned maskRB = mask.fRowBytes - width; 387 unsigned maskRB = mask.fRowBytes - width; 647 unsigned maskRB = mask.fRowBytes - width; [all...] |
SkBlitter.cpp | 108 int mask_rowBytes = mask.fRowBytes; 171 aa += mask.fRowBytes;
|
SkBlitter_4444.cpp | 349 unsigned maskRB = mask.fRowBytes - width;
|
/external/skia/src/effects/ |
SkKernel33MaskFilter.cpp | 20 dst->fRowBytes = dst->fBounds.width(); 29 const int srcRB = src.fRowBytes; 64 dstImage += dst->fRowBytes;
|
SkTableMaskFilter.cpp | 42 dst->fRowBytes = SkAlign4(dst->fBounds.width()); 53 int extraZeros = dst->fRowBytes - dstWidth; 59 srcP += src.fRowBytes;
|
SkBlurMask.cpp | 276 dst->fRowBytes = dst->fBounds.width(); 299 build_sum_buffer(sumBuffer, sw, sh, sp, src.fRowBytes); 339 merge_src_with_blur(dst->fImage, src.fRowBytes, 340 sp, src.fRowBytes, 341 dp + passCount * (rx + ry * dst->fRowBytes), dst->fRowBytes, 345 clamp_with_orig(dp + passCount * (rx + ry * dst->fRowBytes), dst->fRowBytes, 346 sp, src.fRowBytes, sw, sh, 354 dst->fRowBytes = src.fRowBytes [all...] |
SkLayerRasterizer.cpp | 108 mask->fRowBytes = mask->fBounds.width(); 130 device.setConfig(SkBitmap::kA8_Config, mask->fBounds.width(), mask->fBounds.height(), mask->fRowBytes);
|
SkEmbossMask.cpp | 106 int rowBytes = mask->fRowBytes;
|
/external/skia/samplecode/ |
SampleStrokePath.cpp | 49 src.fRowBytes = src.fBounds.width(); 64 dstPtr += dst.fRowBytes;
|
/external/skia/src/ports/ |
SkFontHost_ascender.cpp | 143 glyph->fRowBytes = rec.width; 166 dst += glyph.fRowBytes;
|
/external/skia/src/gpu/ |
SkGpuDevice.cpp | 766 dstM.fRowBytes); [all...] |