Searched defs:dstP (Results 1 - 15 of 15) sorted by relevance

/external/skia/src/effects/
H A DSk1DPathEffect.cpp112 SkPoint srcP[4], dstP[3]; local
118 if (morphpoints(dstP, srcP, 1, meas, dist)) {
119 dst->moveTo(dstP[0]);
128 if (morphpoints(dstP, &srcP[1], 2, meas, dist)) {
129 dst->quadTo(dstP[0], dstP[1]);
133 if (morphpoints(dstP, &srcP[1], 2, meas, dist)) {
134 dst->conicTo(dstP[0], dstP[1], iter.conicWeight());
138 if (morphpoints(dstP,
[all...]
H A DSk2DPathEffect.cpp99 SkPoint src[2], dstP[2]; local
103 this->getMatrix().mapPoints(dstP, src, 2);
105 dst->moveTo(dstP[0]);
106 dst->lineTo(dstP[1]);
H A DSkTableMaskFilter.cpp64 uint8_t* dstP = dst->fImage; local
71 dstP[x] = table[srcP[x]];
74 // we can't just inc dstP by rowbytes, because if it has any
78 dstP += dstWidth;
80 *dstP++ = 0;
/external/skqp/src/effects/
H A DSk1DPathEffect.cpp109 SkPoint srcP[4], dstP[3]; local
115 if (morphpoints(dstP, srcP, 1, meas, dist)) {
116 dst->moveTo(dstP[0]);
125 if (morphpoints(dstP, &srcP[1], 2, meas, dist)) {
126 dst->quadTo(dstP[0], dstP[1]);
130 if (morphpoints(dstP, &srcP[1], 2, meas, dist)) {
131 dst->conicTo(dstP[0], dstP[1], iter.conicWeight());
135 if (morphpoints(dstP,
[all...]
H A DSk2DPathEffect.cpp99 SkPoint src[2], dstP[2]; local
103 this->getMatrix().mapPoints(dstP, src, 2);
105 dst->moveTo(dstP[0]);
106 dst->lineTo(dstP[1]);
H A DSkTableMaskFilter.cpp64 uint8_t* dstP = dst->fImage; local
71 dstP[x] = table[srcP[x]];
74 // we can't just inc dstP by rowbytes, because if it has any
78 dstP += dstWidth;
80 *dstP++ = 0;
/external/skia/src/core/
H A DSkScalerContext.cpp226 uint16_t* dstP = (uint16_t*)dst.fImage; local
285 dstP[pixel_x] = SkPack888ToRGB16(r, g, b);
287 dstP = (uint16_t*)((char*)dstP + dstRB);
H A DSkDevice.cpp387 SkPoint srcP[4], dstP[3]; local
393 morphpoints(dstP, srcP, 1, meas, matrix);
394 dst->moveTo(dstP[0]);
400 morphpoints(dstP, srcP, 2, meas, matrix);
401 dst->quadTo(dstP[0], dstP[1]);
404 morphpoints(dstP, &srcP[1], 2, meas, matrix);
405 dst->quadTo(dstP[0], dstP[1]);
408 morphpoints(dstP,
[all...]
H A DSkMaskFilter.cpp585 SkIPoint srcP, dstP; local
591 if (!as_MFB(fDst)->filterMask(&dstM, src, ctm, &dstP)) {
H A DSkCanvas.cpp824 bool SkCanvas::readPixels(const SkImageInfo& dstInfo, void* dstP, size_t rowBytes, int x, int y) { argument
825 return this->readPixels({ dstInfo, dstP, rowBytes}, x, y);
/external/skqp/src/core/
H A DSkMaskFilter.cpp550 SkIPoint srcP, dstP; local
556 if (!as_MFB(fDst)->filterMask(&dstM, src, ctm, &dstP)) {
H A DSkScalerContext.cpp232 uint16_t* dstP = (uint16_t*)dst.fImage; local
291 dstP[pixel_x] = SkPack888ToRGB16(r, g, b);
293 dstP = (uint16_t*)((char*)dstP + dstRB);
H A DSkDevice.cpp386 SkPoint srcP[4], dstP[3]; local
392 morphpoints(dstP, srcP, 1, meas, matrix);
393 dst->moveTo(dstP[0]);
399 morphpoints(dstP, srcP, 2, meas, matrix);
400 dst->quadTo(dstP[0], dstP[1]);
403 morphpoints(dstP, &srcP[1], 2, meas, matrix);
404 dst->quadTo(dstP[0], dstP[1]);
407 morphpoints(dstP,
[all...]
H A DSkCanvas.cpp824 bool SkCanvas::readPixels(const SkImageInfo& dstInfo, void* dstP, size_t rowBytes, int x, int y) { argument
825 return this->readPixels({ dstInfo, dstP, rowBytes}, x, y);
/external/valgrind/coregrind/
H A Dm_transtab.c1706 UChar* dstP; local
1781 dstP = (UChar*)tcptr;
1783 VG_(memcpy)(dstP, srcP, code_len);
1828 dstP + offs_profInc,
1833 VG_(invalidate_icache)( dstP, code_len );
2330 HChar *srcP, *dstP; local
2361 dstP = (HChar*)&unredir_tc[unredir_tc_used];
2364 dstP[j] = srcP[j];
2366 VG_(invalidate_icache)( dstP, code_len );
2370 unredir_tt[i].hcode = (Addr)dstP;
[all...]

Completed in 337 milliseconds