HomeSort by relevance Sort by last modified time
    Searched refs:srcP (Results 1 - 13 of 13) sorted by null

  /external/skia/src/effects/
Sk1DPathEffect.cpp 107 SkPoint srcP[4], dstP[3];
110 while ((verb = iter.next(srcP)) != SkPath::kDone_Verb) {
113 morphpoints(dstP, srcP, 1, meas, dist);
117 srcP[2] = srcP[1];
118 srcP[1].set(SkScalarAve(srcP[0].fX, srcP[2].fX),
119 SkScalarAve(srcP[0].fY, srcP[2].fY))
    [all...]
SkTableMaskFilter.cpp 42 const uint8_t* srcP = src.fImage;
50 dstP[x] = table[srcP[x]];
52 srcP += src.fRowBytes;
  /external/skia/src/images/
SkFlipPixelRef.cpp 92 const char* srcP = static_cast<const char*>(srcAddr) + offset;
98 memcpy(dstP, srcP, bytes);
100 srcP += rb;
SkImageDecoder_libpng.cpp 827 const uint16_t* SK_RESTRICT srcP = (const uint16_t*)src;
829 unsigned c = *srcP++;
838 const SkPMColor* SK_RESTRICT srcP = (const SkPMColor*)src;
840 SkPMColor c = *srcP++;
849 const SkPMColor16* SK_RESTRICT srcP = (const SkPMColor16*)src;
851 SkPMColor16 c = *srcP++;
860 const SkPMColor* SK_RESTRICT srcP = (const SkPMColor*)src;
865 SkPMColor c = *srcP++;
886 const SkPMColor16* SK_RESTRICT srcP = (const SkPMColor16*)src;
891 SkPMColor16 c = *srcP++
    [all...]
  /external/skia/bench/
RepeatTileBench.cpp 78 const SkPMColor* srcP = src.getAddr32(0, y);
81 *dstP++ = compute666Index(*srcP++);
BitmapBench.cpp 82 const SkPMColor* srcP = src.getAddr32(0, y);
85 *dstP++ = compute666Index(*srcP++);
  /external/skia/src/core/
SkScalerContext.cpp 358 const uint8_t* srcP = src.getAddr8(0, 0);
364 dstP[x] = a8_to_rgb565(srcP[x]);
366 srcP += srcRB;
398 const uint8_t* srcP = src.getAddr8(0, y);
400 unsigned r = *srcP++;
401 unsigned g = *srcP++;
402 unsigned b = *srcP++;
418 const uint8_t* srcP = src.getAddr8(0, y);
420 unsigned r = *srcP++;
421 unsigned g = *srcP++
    [all...]
SkDraw.cpp     [all...]
SkBitmap.cpp 494 const uint8_t* srcP = reinterpret_cast<const uint8_t*>(getPixels());
497 row++, srcP += fRowBytes, dstP += dstRowBytes) {
498 memcpy(dstP, srcP, rowBytes);
927 const char* srcP = reinterpret_cast<const char*>(src->getPixels());
932 memcpy(dstP, srcP, bytesToCopy);
933 srcP += src->rowBytes();
    [all...]
  /external/skia/tests/
BitmapCopyTest.cpp 303 const char* srcP = (const char*)src.getAddr(0, 0);
305 REPORTER_ASSERT(reporter, srcP != dstP);
306 REPORTER_ASSERT(reporter, !memcmp(srcP, dstP,
  /external/valgrind/main/coregrind/
m_transtab.c 933 UChar* srcP;
1004 srcP = (UChar*)code;
1006 dstP[i] = srcP[i];
    [all...]
  /external/icu4c/i18n/
ucol.cpp     [all...]
  /external/skia/samplecode/
SampleApp.cpp 778 const void* srcP = src.getAddr(0, y);
781 if (memcmp(srcP, origP, bytes)) {
    [all...]

Completed in 308 milliseconds