/external/skqp/src/codec/ |
D | SkBmpRLECodec.cpp | 36 void* dst, size_t dstRowBytes, in onGetPixels() argument 50 int rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); in onGetPixels() 168 void SkBmpRLECodec::setPixel(void* dst, size_t dstRowBytes, in setPixel() argument 180 SkPMColor* dstRow = SkTAddOffset<SkPMColor>(dst, row * (int) dstRowBytes); in setPixel() 185 uint16_t* dstRow = SkTAddOffset<uint16_t>(dst, row * (int) dstRowBytes); in setPixel() 201 void SkBmpRLECodec::setRGBPixel(void* dst, size_t dstRowBytes, in setRGBPixel() argument 213 SkPMColor* dstRow = SkTAddOffset<SkPMColor>(dst, row * (int) dstRowBytes); in setRGBPixel() 218 SkPMColor* dstRow = SkTAddOffset<SkPMColor>(dst, row * (int) dstRowBytes); in setRGBPixel() 223 uint16_t* dstRow = SkTAddOffset<uint16_t>(dst, row * (int) dstRowBytes); in setRGBPixel() 276 int SkBmpRLECodec::decodeRows(const SkImageInfo& info, void* dst, size_t dstRowBytes, in decodeRows() argument [all …]
|
D | SkBmpRLECodec.h | 47 size_t dstRowBytes, const Options&, 75 void setPixel(void* dst, size_t dstRowBytes, 81 void setRGBPixel(void* dst, size_t dstRowBytes, 88 int decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, 90 int decodeRLE(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes);
|
D | SkBmpStandardCodec.cpp | 37 void* dst, size_t dstRowBytes, in onGetPixels() argument 53 int rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); in onGetPixels() 205 int SkBmpStandardCodec::decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, in decodeRows() argument 219 void* dstRow = SkTAddOffset<void>(dst, row * dstRowBytes); in decodeRows() 235 decodeIcoMask(this->stream(), dstInfo, dst, dstRowBytes); in decodeRows() 274 decodeIcoMask(&subStream, dstInfo, dst, dstRowBytes); in decodeRows() 281 void* dst, size_t dstRowBytes) { in decodeIcoMask() argument 316 void* dstRow = SkTAddOffset<SkPMColor>(dstPtr, row * dstRowBytes); in decodeIcoMask()
|
D | SkBmpMaskCodec.cpp | 28 void* dst, size_t dstRowBytes, in onGetPixels() argument 45 int rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); in onGetPixels() 79 void* dst, size_t dstRowBytes, in decodeRows() argument 93 void* dstRow = SkTAddOffset<void>(dst, row * dstRowBytes); in decodeRows()
|
D | SkBmpStandardCodec.h | 50 size_t dstRowBytes, const Options&, 77 int decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, 85 void decodeIcoMask(SkStream* stream, const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes);
|
D | SkBmpMaskCodec.h | 41 size_t dstRowBytes, const Options&, 54 int decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes,
|
D | SkHeifCodec.cpp | 262 void* dst, size_t dstRowBytes, in onGetPixels() argument 284 int rows = this->readRows(dstInfo, dst, dstRowBytes, dstInfo.height(), options); in onGetPixels() 369 int SkHeifCodec::onGetScanlines(void* dst, int count, size_t dstRowBytes) { in onGetScanlines() argument 370 return this->readRows(this->dstInfo(), dst, dstRowBytes, count, this->options()); in onGetScanlines()
|
D | SkGifCodec.cpp | 277 void* pixels, size_t dstRowBytes, in onGetPixels() argument 301 fDstRowBytes = dstRowBytes; in onGetPixels() 307 void* pixels, size_t dstRowBytes, in onStartIncrementalDecode() argument 315 fDstRowBytes = dstRowBytes; in onStartIncrementalDecode()
|
D | SkWbmpCodec.cpp | 166 int SkWbmpCodec::onGetScanlines(void* dst, int count, size_t dstRowBytes) { in onGetScanlines() argument 173 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes); in onGetScanlines()
|
/external/skia/src/codec/ |
D | SkBmpRLECodec.cpp | 36 void* dst, size_t dstRowBytes, in onGetPixels() argument 50 int rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); in onGetPixels() 168 void SkBmpRLECodec::setPixel(void* dst, size_t dstRowBytes, in setPixel() argument 180 SkPMColor* dstRow = SkTAddOffset<SkPMColor>(dst, row * (int) dstRowBytes); in setPixel() 185 uint16_t* dstRow = SkTAddOffset<uint16_t>(dst, row * (int) dstRowBytes); in setPixel() 201 void SkBmpRLECodec::setRGBPixel(void* dst, size_t dstRowBytes, in setRGBPixel() argument 213 SkPMColor* dstRow = SkTAddOffset<SkPMColor>(dst, row * (int) dstRowBytes); in setRGBPixel() 218 SkPMColor* dstRow = SkTAddOffset<SkPMColor>(dst, row * (int) dstRowBytes); in setRGBPixel() 223 uint16_t* dstRow = SkTAddOffset<uint16_t>(dst, row * (int) dstRowBytes); in setRGBPixel() 276 int SkBmpRLECodec::decodeRows(const SkImageInfo& info, void* dst, size_t dstRowBytes, in decodeRows() argument [all …]
|
D | SkBmpRLECodec.h | 47 size_t dstRowBytes, const Options&, 75 void setPixel(void* dst, size_t dstRowBytes, 81 void setRGBPixel(void* dst, size_t dstRowBytes, 88 int decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, 90 int decodeRLE(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes);
|
D | SkBmpStandardCodec.cpp | 37 void* dst, size_t dstRowBytes, in onGetPixels() argument 53 int rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); in onGetPixels() 203 int SkBmpStandardCodec::decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, in decodeRows() argument 217 void* dstRow = SkTAddOffset<void>(dst, row * dstRowBytes); in decodeRows() 233 decodeIcoMask(this->stream(), dstInfo, dst, dstRowBytes); in decodeRows() 272 decodeIcoMask(&subStream, dstInfo, dst, dstRowBytes); in decodeRows() 279 void* dst, size_t dstRowBytes) { in decodeIcoMask() argument 314 void* dstRow = SkTAddOffset<SkPMColor>(dstPtr, row * dstRowBytes); in decodeIcoMask()
|
D | SkBmpMaskCodec.cpp | 28 void* dst, size_t dstRowBytes, in onGetPixels() argument 45 int rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); in onGetPixels() 79 void* dst, size_t dstRowBytes, in decodeRows() argument 93 void* dstRow = SkTAddOffset<void>(dst, row * dstRowBytes); in decodeRows()
|
D | SkBmpStandardCodec.h | 50 size_t dstRowBytes, const Options&, 77 int decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, 85 void decodeIcoMask(SkStream* stream, const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes);
|
D | SkBmpMaskCodec.h | 41 size_t dstRowBytes, const Options&, 54 int decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes,
|
D | SkHeifCodec.cpp | 262 void* dst, size_t dstRowBytes, in onGetPixels() argument 284 int rows = this->readRows(dstInfo, dst, dstRowBytes, dstInfo.height(), options); in onGetPixels() 371 int SkHeifCodec::onGetScanlines(void* dst, int count, size_t dstRowBytes) { in onGetScanlines() argument 372 return this->readRows(this->dstInfo(), dst, dstRowBytes, count, this->options()); in onGetScanlines()
|
D | SkGifCodec.cpp | 277 void* pixels, size_t dstRowBytes, in onGetPixels() argument 301 fDstRowBytes = dstRowBytes; in onGetPixels() 307 void* pixels, size_t dstRowBytes, in onStartIncrementalDecode() argument 315 fDstRowBytes = dstRowBytes; in onStartIncrementalDecode()
|
D | SkWbmpCodec.cpp | 163 int SkWbmpCodec::onGetScanlines(void* dst, int count, size_t dstRowBytes) { in onGetScanlines() argument 170 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes); in onGetScanlines()
|
/external/skqp/include/core/ |
D | SkPixmap.h | 556 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, 581 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes) const { in readPixels() argument 582 return this->readPixels(dstInfo, dstPixels, dstRowBytes, 0, 0); in readPixels() 611 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, int srcX, in readPixels() argument 613 return this->readPixels(dstInfo, dstPixels, dstRowBytes, srcX, srcY, in readPixels()
|
D | SkBitmap.h | 959 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, 990 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, in readPixels() argument 992 return this->readPixels(dstInfo, dstPixels, dstRowBytes, srcX, srcY, in readPixels()
|
/external/skia/include/core/ |
D | SkPixmap.h | 549 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, 574 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes) const { in readPixels() argument 575 return this->readPixels(dstInfo, dstPixels, dstRowBytes, 0, 0); in readPixels() 604 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, int srcX, in readPixels() argument 606 return this->readPixels(dstInfo, dstPixels, dstRowBytes, srcX, srcY, in readPixels()
|
D | SkBitmap.h | 949 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, 980 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, in readPixels() argument 982 return this->readPixels(dstInfo, dstPixels, dstRowBytes, srcX, srcY, in readPixels()
|
/external/skia/src/gpu/ |
D | GrSurfaceContext.cpp | 45 size_t dstRowBytes, int x, int y, uint32_t flags) { in readPixels() argument 61 dstRowBytes, flags); in readPixels()
|
/external/skqp/src/gpu/ |
D | GrSurfaceContext.cpp | 42 size_t dstRowBytes, int x, int y, uint32_t flags) { in readPixels() argument 62 dstBuffer, dstRowBytes, flags); in readPixels()
|
/external/skia/src/ports/ |
D | SkFontHost_FreeType_common.cpp | 219 const size_t dstRowBytes = dstMask.fRowBytes; in copyFTBitmap() local 232 size_t commonRowBytes = SkTMin(srcRowBytes, dstRowBytes); in copyFTBitmap() 236 dst += dstRowBytes; in copyFTBitmap() 254 dst += dstRowBytes; in copyFTBitmap() 272 dst += dstRowBytes; in copyFTBitmap()
|