Lines Matching refs:dstRowBytes

39                                            void* dst, size_t dstRowBytes,  in onGetPixels()  argument
53 int rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); in onGetPixels()
171 void SkBmpRLECodec::setPixel(void* dst, size_t dstRowBytes, in setPixel() argument
183 SkPMColor* dstRow = SkTAddOffset<SkPMColor>(dst, row * (int) dstRowBytes); in setPixel()
188 uint16_t* dstRow = SkTAddOffset<uint16_t>(dst, row * (int) dstRowBytes); in setPixel()
204 void SkBmpRLECodec::setRGBPixel(void* dst, size_t dstRowBytes, in setRGBPixel() argument
216 SkPMColor* dstRow = SkTAddOffset<SkPMColor>(dst, row * (int) dstRowBytes); in setRGBPixel()
221 SkPMColor* dstRow = SkTAddOffset<SkPMColor>(dst, row * (int) dstRowBytes); in setRGBPixel()
226 uint16_t* dstRow = SkTAddOffset<uint16_t>(dst, row * (int) dstRowBytes); in setRGBPixel()
279 int SkBmpRLECodec::decodeRows(const SkImageInfo& info, void* dst, size_t dstRowBytes, in decodeRows() argument
289 SkSampler::Fill(dstInfo, dst, dstRowBytes, opts.fZeroInitialized); in decodeRows()
297 dst = SkTAddOffset<void>(dst, fLinesToSkip * dstRowBytes); in decodeRows()
308 size_t decodeRowBytes = dstRowBytes; in decodeRows()
328 dst = SkTAddOffset<void>(dst, dstRowBytes); in decodeRows()
335 int SkBmpRLECodec::decodeRLE(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes) { in decodeRLE() argument
443 setPixel(dst, dstRowBytes, dstInfo, x++, in decodeRLE()
447 setPixel(dst, dstRowBytes, dstInfo, in decodeRLE()
455 setPixel(dst, dstRowBytes, dstInfo, x++, in decodeRLE()
464 setRGBPixel(dst, dstRowBytes, dstInfo, in decodeRLE()
502 setRGBPixel(dst, dstRowBytes, dstInfo, x++, y, red, green, blue); in decodeRLE()
518 setPixel(dst, dstRowBytes, dstInfo, x, y, indices[which]); in decodeRLE()