/external/skia/src/images/ |
SkImageDecoder_ktx.cpp | 147 const int srcRowBytes = width; 150 srcRow += sampler.srcY0() * srcRowBytes; 153 srcRow += sampler.srcDY() * srcRowBytes; 176 const int srcRowBytes = width * 3; 179 srcRow += sampler.srcY0() * srcRowBytes; 182 srcRow += sampler.srcDY() * srcRowBytes; 195 const int srcRowBytes = width * 3; 198 srcRow += sampler.srcY0() * srcRowBytes; 201 srcRow += sampler.srcDY() * srcRowBytes; 225 const int srcRowBytes = width * 4 [all...] |
SkImageDecoder_libbmp.cpp | 156 const int srcRowBytes = width * 3; 160 srcRow += sampler.srcY0() * srcRowBytes; 163 srcRow += sampler.srcDY() * srcRowBytes;
|
SkImageDecoder_pkm.cpp | 86 const int srcRowBytes = width * 3; 89 srcRow += sampler.srcY0() * srcRowBytes; 92 srcRow += sampler.srcDY() * srcRowBytes;
|
SkImageDecoder_astc.cpp | 161 const int srcRowBytes = width * 4; 164 srcRow += sampler.srcY0() * srcRowBytes; 167 srcRow += sampler.srcDY() * srcRowBytes;
|
/external/skia/src/codec/ |
SkBmpMaskCodec.cpp | 21 , fSrcBuffer(new uint8_t [this->srcRowBytes()]) 81 if (this->stream()->read(srcRow, this->srcRowBytes()) != this->srcRowBytes()) {
|
SkBmpCodec.h | 84 size_t srcRowBytes() const { return fSrcRowBytes; }
|
SkBmpStandardCodec.cpp | 28 , fSrcBuffer(new uint8_t [this->srcRowBytes()]) 219 if (this->stream()->read(fSrcBuffer.get(), this->srcRowBytes()) != this->srcRowBytes()) { 256 const size_t bytesToSkip = remainingScanlines * this->srcRowBytes() +
|
SkPngCodec.cpp | 467 const size_t srcRowBytes = width * bpp; 498 storage.reset(height * srcRowBytes); 505 srcRow += srcRowBytes; 514 srcRow += srcRowBytes; 517 storage.reset(srcRowBytes);
|
SkJpegCodec.cpp | 490 size_t srcRowBytes = get_row_bytes(fDecoderMgr->dinfo()); 496 SkASSERT(count == 1 || dstRowBytes >= srcRowBytes); 503 sk_msan_mark_initialized(dstRow, dstRow + srcRowBytes, "skbug.com/4550");
|
/external/skia/src/core/ |
SkConfig8888.h | 21 const SkImageInfo& srcInfo, const void* srcPixels, size_t srcRowBytes,
|
SkBitmapDevice.cpp | 162 size_t srcRowBytes, int x, int y) { 173 if (SkPixelInfo::CopyPixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes)) {
|
/external/skia/src/utils/ |
SkTextureCompressor_LATC.cpp | 433 int srcRowBytes) { 434 compress_a8_latc_block<PackRowMajor>(&dst, src, srcRowBytes); 438 static inline void UpdateBlock(uint8_t* dst, const uint8_t* src, int srcRowBytes, 443 const uint32_t idx = *(reinterpret_cast<const uint32_t*>(src + i*srcRowBytes)); 450 compress_a8_latc_block<PackRowMajor>(&cmpSrcPtr, src, srcRowBytes);
|
SkTextureCompressor_R11EAC.cpp | 603 int srcRowBytes) { 604 *(reinterpret_cast<uint64_t*>(dst)) = compress_r11eac_block_fast(src, srcRowBytes); 608 static inline void UpdateBlock(uint8_t* dst, const uint8_t* src, int srcRowBytes,
|
SkTextureCompressor_ASTC.cpp | [all...] |
/external/skia/src/gpu/text/ |
GrFontScaler.cpp | 98 int srcRowBytes) { 110 src += srcRowBytes;
|
/external/skia/src/ports/ |
SkFontHost_FreeType_common.cpp | 187 const size_t srcRowBytes = SkTAbs(srcPitch); 204 size_t commonRowBytes = SkTMin(srcRowBytes, dstRowBytes);
|
/external/skia/src/effects/ |
SkBlurMask.cpp | 440 const uint8_t src[], int srcRowBytes, 469 src += srcRowBytes - sw; [all...] |
/external/skia/tests/ |
ImageTest.cpp | 246 const size_t srcRowBytes = 2 * sizeof(uint8_t); 248 SkAutoTUnref<SkImage> image(SkImage::NewRasterCopy(srcInfo, indices, srcRowBytes, ctable));
|