Searched defs:srcP (Results 1 - 11 of 11) sorted by relevance

/external/skia/src/images/
H A Dtransform_scanline.h42 const uint16_t* SK_RESTRICT srcP = (const uint16_t*)src; local
44 unsigned c = *srcP++;
57 const SkPMColor* SK_RESTRICT srcP = (const SkPMColor*)src; local
59 SkPMColor c = *srcP++;
72 const SkPMColor16* SK_RESTRICT srcP = (const SkPMColor16*)src; local
74 SkPMColor16 c = *srcP++;
88 const SkPMColor* SK_RESTRICT srcP = (const SkPMColor*)src; local
93 SkPMColor c = *srcP++;
118 const SkPMColor16* SK_RESTRICT srcP = (const SkPMColor16*)src; local
123 SkPMColor16 c = *srcP
[all...]
/external/skia/src/effects/
H A DSkTableMaskFilter.cpp41 const uint8_t* srcP = src.fImage; local
49 dstP[x] = table[srcP[x]];
51 srcP += src.fRowBytes;
H A DSk1DPathEffect.cpp115 SkPoint srcP[4], dstP[3]; local
118 while ((verb = iter.next(srcP)) != SkPath::kDone_Verb) {
121 if (morphpoints(dstP, srcP, 1, meas, dist)) {
126 srcP[2] = srcP[1];
127 srcP[1].set(SkScalarAve(srcP[0].fX, srcP[2].fX),
128 SkScalarAve(srcP[0].fY, srcP[
[all...]
/external/skia/bench/
H A DRepeatTileBench.cpp76 const SkPMColor* srcP = src.getAddr32(0, y); local
79 *dstP++ = compute_666_index(*srcP++);
H A DBitmapBench.cpp56 const SkPMColor* srcP = src.getAddr32(0, y); local
59 *dstP++ = compute666Index(*srcP++);
/external/skia/src/core/
H A DSkConfig8888.cpp118 const uint32_t* srcP = static_cast<const uint32_t*>(fPixels); local
122 proc(dstP, srcP, width);
124 srcP += srcInc;
H A DSkDevice.cpp289 SkPoint srcP[4], dstP[3]; local
292 while ((verb = iter.next(srcP)) != SkPath::kDone_Verb) {
295 morphpoints(dstP, srcP, 1, meas, matrix);
300 srcP[0].fX = SkScalarAve(srcP[0].fX, srcP[1].fX);
301 srcP[0].fY = SkScalarAve(srcP[0].fY, srcP[1].fY);
302 morphpoints(dstP, srcP,
[all...]
H A DSkScalerContext.cpp294 const uint8_t* srcP = src.getAddr8(0, y); local
304 int sample_value = srcP[sample_index];
H A DSkBitmap.cpp466 const uint8_t* srcP = reinterpret_cast<const uint8_t*>(getPixels()); local
468 for (int row = 0; row < fInfo.height(); row++, srcP += fRowBytes, dstP += dstRowBytes) {
469 memcpy(dstP, srcP, rowBytes);
/external/skia/tests/
H A DBitmapCopyTest.cpp306 const char* srcP = (const char*)srcPremul.getAddr(0, 0); local
308 REPORTER_ASSERT(reporter, srcP != dstP);
309 REPORTER_ASSERT(reporter, !memcmp(srcP, dstP,
/external/valgrind/coregrind/
H A Dm_transtab.c1607 UChar* srcP; local
1684 srcP = (UChar*)code;
1685 VG_(memcpy)(dstP, srcP, code_len);
2229 HChar *srcP, *dstP; local
2261 srcP = (HChar*)code;
2263 dstP[j] = srcP[j];

Completed in 826 milliseconds