Home
last modified time | relevance | path

Searched refs:tmpDst (Results 1 – 13 of 13) sorted by relevance

/external/skia/src/core/
DSkPathEffect.cpp17 SkPath tmp, *tmpDst = dst; in filterPath() local
19 tmpDst = &tmp; in filterPath()
21 if (this->onFilterPath(tmpDst, src, rec, bounds)) { in filterPath()
DSkBitmapDevice.cpp435 SkRect bitmapBounds, tmpSrc, tmpDst; in drawBitmapRect() local
461 matrix.mapRect(&tmpDst, tmpSrc); in drawBitmapRect()
462 if (!tmpDst.isFinite()) { in drawBitmapRect()
465 dstPtr = &tmpDst; in drawBitmapRect()
DSkImageFilter.cpp356 SkIRect tmpDst = this->onFilterNodeBounds(srcBounds, ctx.ctm(), kForward_MapDirection, nullptr); in applyCropRect() local
357 fCropRect.applyTo(tmpDst, ctx.ctm(), this->affectsTransparentBlack(), dstBounds); in applyCropRect()
/external/skqp/src/core/
DSkPathEffect.cpp17 SkPath tmp, *tmpDst = dst; in filterPath() local
19 tmpDst = &tmp; in filterPath()
21 if (this->onFilterPath(tmpDst, src, rec, bounds)) { in filterPath()
DSkBitmapDevice.cpp440 SkRect bitmapBounds, tmpSrc, tmpDst; in drawBitmapRect() local
466 matrix.mapRect(&tmpDst, tmpSrc); in drawBitmapRect()
467 if (!tmpDst.isFinite()) { in drawBitmapRect()
470 dstPtr = &tmpDst; in drawBitmapRect()
DSkImageFilter.cpp304 SkIRect tmpDst = this->onFilterNodeBounds(srcBounds, ctx.ctm(), kForward_MapDirection, nullptr); in applyCropRect() local
305 fCropRect.applyTo(tmpDst, ctx.ctm(), this->affectsTransparentBlack(), dstBounds); in applyCropRect()
/external/skia/src/effects/imagefilters/
DSkArithmeticImageFilter.cpp443 SkPixmap tmpDst = dst; in drawForeground() local
444 if (intersect(&tmpDst, &src, fgoffset.fLeft, fgoffset.fTop)) { in drawForeground()
445 for (int y = 0; y < tmpDst.height(); ++y) { in drawForeground()
446 proc(fInputs.fK, tmpDst.writable_addr32(0, y), src.addr32(0, y), tmpDst.width()); in drawForeground()
/external/skqp/tools/
Dsk_tool_utils.cpp316 SkBitmap tmpDst; in copy_to() local
318 if (!tmpDst.setInfo(dstInfo)) { in copy_to()
322 if (!tmpDst.tryAllocPixels()) { in copy_to()
327 if (!tmpDst.peekPixels(&dstPM)) { in copy_to()
335 dst->swap(tmpDst); in copy_to()
/external/skia/tools/
DToolUtils.cpp446 SkBitmap tmpDst; in copy_to() local
448 if (!tmpDst.setInfo(dstInfo)) { in copy_to()
452 if (!tmpDst.tryAllocPixels()) { in copy_to()
457 if (!tmpDst.peekPixels(&dstPM)) { in copy_to()
465 dst->swap(tmpDst); in copy_to()
/external/skqp/src/effects/imagefilters/
DSkArithmeticImageFilter.cpp415 SkPixmap tmpDst = dst; in drawForeground() local
416 if (intersect(&tmpDst, &src, fgoffset.fLeft, fgoffset.fTop)) { in drawForeground()
417 for (int y = 0; y < tmpDst.height(); ++y) { in drawForeground()
418 proc(fK, tmpDst.writable_addr32(0, y), src.addr32(0, y), tmpDst.width()); in drawForeground()
/external/skia/src/gpu/
DSkGpuDevice.cpp1120 SkRect tmpSrc, tmpDst; in drawBitmapRect() local
1128 srcToDstMatrix.mapRect(&tmpDst, *src); in drawBitmapRect()
1129 dst = &tmpDst; in drawBitmapRect()
/external/skqp/src/gpu/
DSkGpuDevice.cpp1152 SkRect tmpSrc, tmpDst; in drawBitmapRect() local
1160 srcToDstMatrix.mapRect(&tmpDst, *src); in drawBitmapRect()
1161 dst = &tmpDst; in drawBitmapRect()
/external/icu/icu4c/source/i18n/
Dcalendar.cpp3182 int32_t tmpRaw, tmpDst; in computeZoneOffset() local
3183 tz.getOffset(tgmt - 6*60*60*1000, FALSE, tmpRaw, tmpDst, ec); in computeZoneOffset()
3184 int32_t offsetDelta = (rawOffset + dstOffset) - (tmpRaw + tmpDst); in computeZoneOffset()