HomeSort by relevance Sort by last modified time
    Searched refs:fRowBytes (Results 1 - 18 of 18) sorted by null

  /external/skia/include/core/
SkMask.h 57 uint32_t fRowBytes;
84 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
95 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
105 return reinterpret_cast<const uint32_t*>(fImage + SkAlign4(fRowBytes * fBounds.height())) +
SkBitmap.h 101 int rowBytes() const { return fRowBytes; }
120 int rowBytesAsPixels() const { return fRowBytes >> (fBytesPerPixel >> 1); }
130 size_t getSize() const { return fHeight * fRowBytes; }
138 size.setMul(fHeight, fRowBytes);
468 uint32_t fRowBytes;
644 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
651 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
658 return (uint8_t*)fPixels + y * fRowBytes + x;
666 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)];
674 return (uint8_t*)fPixels + y * fRowBytes + (x >> 3)
    [all...]
  /external/skia/src/core/
SkMask.cpp 34 return safeMul32(fBounds.height(), fRowBytes);
SkBitmap.cpp 35 uint32_t fRowBytes;
138 SkTSwap<uint32_t>(fRowBytes, other.fRowBytes);
245 fRowBytes = rowBytes;
548 const int rowBytes = fRowBytes;
986 level[i].fRowBytes = rowBytes;
1025 mip.fWidth, mip.fHeight, mip.fRowBytes);
1124 srcM.fRowBytes = SkAlign4(this->width());
1136 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
1140 srcM.fRowBytes);
    [all...]
SkScan_AntiPath.cpp 233 fMask.fRowBytes = ir.width();
241 memset(fStorage, 0, fMask.fBounds.height() * fMask.fRowBytes + 1);
316 uint8_t* row = fMask.fImage + iy * fMask.fRowBytes + (x >> SHIFT);
SkBlitBWMaskTemplate.h 41 unsigned mask_rowBytes = srcMask.fRowBytes;
SkBlitter_ARGB32.cpp 168 unsigned maskRB = mask.fRowBytes - width;
233 unsigned maskRB = mask.fRowBytes - width;
348 unsigned maskRB = mask.fRowBytes - width;
SkBlitter_A8.cpp 188 alpha += mask.fRowBytes;
384 alpha += mask.fRowBytes;
SkDraw.cpp 943 mask.fRowBytes = bitmap.rowBytes();
968 mask.fRowBytes = SkAlign4(mask.fBounds.width());
984 mask.fBounds.height(), mask.fRowBytes);
    [all...]
SkScalerContext.cpp 44 mask->fRowBytes = this->rowBytes();
472 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 117 int mask_rowBytes = mask.fRowBytes;
192 aa += mask.fRowBytes;
SkBlitter_4444.cpp 364 unsigned maskRB = mask.fRowBytes - width;
  /external/skia/src/effects/
SkKernel33MaskFilter.cpp 20 dst->fRowBytes = dst->fBounds.width();
29 const int srcRB = src.fRowBytes;
66 dstImage += dst->fRowBytes;
SkTableMaskFilter.cpp 26 dst->fRowBytes = SkAlign4(dst->fBounds.width());
37 int extraZeros = dst->fRowBytes - dstWidth;
43 srcP += src.fRowBytes;
SkBlurMask.cpp 267 dst->fRowBytes = dst->fBounds.width();
289 build_sum_buffer(sumBuffer, sw, sh, sp, src.fRowBytes);
307 merge_src_with_blur(dst->fImage, src.fRowBytes,
308 sp, src.fRowBytes,
309 dp + rx + ry*dst->fRowBytes, dst->fRowBytes,
313 clamp_with_orig(dp + rx + ry*dst->fRowBytes, dst->fRowBytes,
314 sp, src.fRowBytes, sw, sh,
322 dst->fRowBytes = src.fRowBytes
    [all...]
SkLayerRasterizer.cpp 110 mask->fRowBytes = mask->fBounds.width();
133 device.setConfig(SkBitmap::kA8_Config, mask->fBounds.width(), mask->fBounds.height(), mask->fRowBytes);
SkEmbossMask.cpp 112 int rowBytes = mask->fRowBytes;

Completed in 224 milliseconds