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

  /external/skia/src/effects/
Sk1DPathEffect.cpp 107 SkPoint srcP[4], dstP[3];
113 morphpoints(dstP, srcP, 1, meas, dist);
114 dst->moveTo(dstP[0]);
122 morphpoints(dstP, &srcP[1], 2, meas, dist);
123 dst->quadTo(dstP[0], dstP[1]);
126 morphpoints(dstP, &srcP[1], 3, meas, dist);
127 dst->cubicTo(dstP[0], dstP[1], dstP[2])
    [all...]
SkTableMaskFilter.cpp 43 uint8_t* dstP = dst->fImage;
50 dstP[x] = table[srcP[x]];
53 // we can't just inc dstP by rowbytes, because if it has any
57 dstP += dstWidth;
59 *dstP++ = 0;
  /external/skia/src/images/
SkFlipPixelRef.cpp 91 char* dstP = static_cast<char*>(dst.getPixels()) + offset;
98 memcpy(dstP, srcP, bytes);
99 dstP += rb;
  /frameworks/native/libs/utils/
Unicode.cpp 103 // Write out the source character to <dstP>.
105 static inline void utf32_codepoint_to_utf8(uint8_t* dstP, char32_t srcChar, size_t bytes)
107 dstP += bytes;
110 case 4: *--dstP = (uint8_t)((srcChar | kByteMark) & kByteMask); srcChar >>= 6;
111 case 3: *--dstP = (uint8_t)((srcChar | kByteMark) & kByteMask); srcChar >>= 6;
112 case 2: *--dstP = (uint8_t)((srcChar | kByteMark) & kByteMask); srcChar >>= 6;
113 case 1: *--dstP = (uint8_t)(srcChar | kFirstByteMark[bytes]);
  /external/skia/bench/
RepeatTileBench.cpp 79 uint8_t* dstP = dst->getAddr8(0, y);
81 *dstP++ = compute666Index(*srcP++);
BitmapBench.cpp 83 uint8_t* dstP = dst->getAddr8(0, y);
85 *dstP++ = compute666Index(*srcP++);
  /external/skia/src/core/
SkScalerContext.cpp 360 uint16_t* dstP = (uint16_t*)dst.fImage;
364 dstP[x] = a8_to_rgb565(srcP[x]);
367 dstP = (uint16_t*)((char*)dstP + dstRB);
395 uint16_t* dstP = (uint16_t*)dst.fImage;
403 dstP[x] = packLCD16(r, g, b);
405 dstP = (uint16_t*)((char*)dstP + dstRB);
415 SkPMColor* dstP = (SkPMColor*)dst.fImage;
424 dstP[x] = SkPackARGB32(a, r, g, b)
    [all...]
SkDraw.cpp     [all...]
SkBitmap.cpp 495 uint8_t* dstP = reinterpret_cast<uint8_t*>(dst);
497 row++, srcP += fRowBytes, dstP += dstRowBytes) {
498 memcpy(dstP, srcP, rowBytes);
928 char* dstP = reinterpret_cast<char*>(tmpDst.getPixels());
932 memcpy(dstP, srcP, bytesToCopy);
934 dstP += tmpDst.rowBytes();
    [all...]
  /external/skia/samplecode/
SampleTextEffects.cpp 201 SkPoint src[2], dstP[2];
207 this->getMatrix().mapPoints(dstP, src, 2);
209 dst->moveTo(dstP[0]);
210 dst->lineTo(dstP[1]);
SampleAll.cpp 233 SkPoint src[2], dstP[2];
239 this->getMatrix().mapPoints(dstP, src, 2);
241 dst->moveTo(dstP[0]);
242 dst->lineTo(dstP[1]);
SampleSlides.cpp 626 SkPoint src[2], dstP[2];
632 this->getMatrix().mapPoints(dstP, src, 2);
634 dst->moveTo(dstP[0]);
635 dst->lineTo(dstP[1]);
  /external/valgrind/main/coregrind/
m_transtab.c 934 UChar* dstP;
1003 dstP = (UChar*)tcptr;
1006 dstP[i] = srcP[i];
1010 invalidate_icache( dstP, code_len );
    [all...]
  /external/skia/tests/
BitmapCopyTest.cpp 304 const char* dstP = (const char*)dst.getAddr(0, 0);
305 REPORTER_ASSERT(reporter, srcP != dstP);
306 REPORTER_ASSERT(reporter, !memcmp(srcP, dstP,
  /external/valgrind/main/VEX/switchback/
linker.c 462 void gen_armle_goto ( char* fixup, char* dstP )
464 Elf_Word w = (Elf_Word)dstP;
470 fprintf(stderr,"at %p generating jump to %p\n", fixup, dstP );
    [all...]
  /external/valgrind/main/VEX/unused/
linker.c 396 void gen_armle_goto ( char* fixup, char* dstP )
398 Elf_Word w = (Elf_Word)dstP;
404 fprintf(stderr,"at %p generating jump to %p\n", fixup, dstP );
    [all...]

Completed in 856 milliseconds