Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkPathEffect.cpp18 SkPath tmp, *tmpDst = dst; in filterPath() local
20 tmpDst = &tmp; in filterPath()
22 if (this->onFilterPath(tmpDst, src, rec, bounds)) { in filterPath()
DSkBitmapDevice.cpp438 SkRect bitmapBounds, tmpSrc, tmpDst; in drawImageRect() local
462 matrix.mapRect(&tmpDst, tmpSrc); in drawImageRect()
463 if (!tmpDst.isFinite()) { in drawImageRect()
466 dstPtr = &tmpDst; in drawImageRect()
DSkImageFilter.cpp373 SkIRect tmpDst = this->onFilterNodeBounds(srcBounds, ctx.ctm(), kForward_MapDirection, nullptr); in applyCropRect() local
374 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.cpp430 SkPixmap tmpDst = dst; in drawForeground() local
431 if (intersect(&tmpDst, &src, fgoffset.fLeft, fgoffset.fTop)) { in drawForeground()
432 for (int y = 0; y < tmpDst.height(); ++y) { in drawForeground()
433 proc(fK, tmpDst.writable_addr32(0, y), src.addr32(0, y), tmpDst.width()); in drawForeground()
/external/skia/tools/
DToolUtils.cpp389 SkBitmap tmpDst; in copy_to() local
391 if (!tmpDst.setInfo(dstInfo)) { in copy_to()
395 if (!tmpDst.tryAllocPixels()) { in copy_to()
400 if (!tmpDst.peekPixels(&dstPM)) { in copy_to()
408 dst->swap(tmpDst); in copy_to()
/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/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/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()