Lines Matching defs:dst
143 void* dst = iccData->writable_data();
153 memcpy(dst, src, bytes);
154 dst = SkTAddOffset<void>(dst, bytes);
471 int SkJpegCodec::readRows(const SkImageInfo& dstInfo, void* dst, size_t rowBytes, int count,
484 // we cannot color xform "in place" (many times we can, but not when the src and dst
486 // In this case, we will color xform from fColorXformSrcRow into the dst.
487 JSAMPLE* decodeDst = (JSAMPLE*) dst;
488 uint32_t* swizzleDst = (uint32_t*) dst;
520 this->applyColorXform(dst, swizzleDst, dstWidth);
521 dst = SkTAddOffset<void>(dst, rowBytes);
552 void* dst, size_t dstRowBytes,
586 int rows = this->readRows(dstInfo, dst, dstRowBytes, dstInfo.height(), options);
752 int SkJpegCodec::onGetScanlines(void* dst, int count, size_t dstRowBytes) {
753 int rows = this->readRows(this->dstInfo(), dst, dstRowBytes, count, this->options());