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

  /external/skia/src/effects/
Sk1DPathEffect.cpp 109 SkPoint srcP[4], dstP[3];
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], 3, meas, dist)) {
131 dst->cubicTo(dstP[0], dstP[1], dstP[2])
    [all...]
SkTableMaskFilter.cpp 42 uint8_t* dstP = dst->fImage;
49 dstP[x] = table[srcP[x]];
52 // we can't just inc dstP by rowbytes, because if it has any
56 dstP += dstWidth;
58 *dstP++ = 0;
Sk2DPathEffect.cpp 99 SkPoint src[2], dstP[2];
103 this->getMatrix().mapPoints(dstP, src, 2);
105 dst->moveTo(dstP[0]);
106 dst->lineTo(dstP[1]);
  /external/skia/src/core/
SkDevice.cpp 284 bool SkBaseDevice::readPixels(const SkImageInfo& info, void* dstP, size_t rowBytes, int x, int y) {
285 return this->onReadPixels(info, dstP, rowBytes, x, y);
359 SkPoint srcP[4], dstP[3];
365 morphpoints(dstP, srcP, 1, meas, matrix);
366 dst->moveTo(dstP[0]);
372 morphpoints(dstP, srcP, 2, meas, matrix);
373 dst->quadTo(dstP[0], dstP[1]);
376 morphpoints(dstP, &srcP[1], 2, meas, matrix);
377 dst->quadTo(dstP[0], dstP[1])
    [all...]
SkScalerContext.cpp 243 uint16_t* dstP = (uint16_t*)dst.fImage;
302 dstP[pixel_x] = SkPack888ToRGB16(r, g, b);
304 dstP = (uint16_t*)((char*)dstP + dstRB);
SkBitmap.cpp 519 uint8_t* dstP = reinterpret_cast<uint8_t*>(dst);
521 memcpy(dstP, srcP, rowBytes);
523 dstP += dstRowBytes;
    [all...]
SkCanvas.cpp 876 bool SkCanvas::readPixels(const SkImageInfo& dstInfo, void* dstP, size_t rowBytes, int x, int y) {
882 return device->readPixels(dstInfo, dstP, rowBytes, x, y);
    [all...]
  /system/core/libutils/
Unicode.cpp 100 // Write out the source character to <dstP>.
102 static inline void utf32_codepoint_to_utf8(uint8_t* dstP, char32_t srcChar, size_t bytes)
104 dstP += bytes;
107 case 4: *--dstP = (uint8_t)((srcChar | kByteMark) & kByteMask); srcChar >>= 6;
108 case 3: *--dstP = (uint8_t)((srcChar | kByteMark) & kByteMask); srcChar >>= 6;
109 case 2: *--dstP = (uint8_t)((srcChar | kByteMark) & kByteMask); srcChar >>= 6;
110 case 1: *--dstP = (uint8_t)(srcChar | kFirstByteMark[bytes]);
  /external/skia/bench/
RepeatTileBench.cpp 76 uint8_t* dstP = dst->getAddr8(0, y);
78 *dstP++ = compute_666_index(*srcP++);
BitmapBench.cpp 57 uint8_t* dstP = dst->getAddr8(0, y);
59 *dstP++ = compute666Index(*srcP++);
  /external/skia/tests/
BitmapCopyTest.cpp 334 const char* dstP = (const char*)dst.getAddr(0, 0);
335 REPORTER_ASSERT(reporter, srcP != dstP);
336 REPORTER_ASSERT(reporter, !memcmp(srcP, dstP,
  /external/valgrind/coregrind/
m_transtab.c     [all...]
  /external/valgrind/VEX/switchback/
linker.c 464 void gen_armle_goto ( char* fixup, char* dstP )
466 Elf_Word w = (Elf_Word)dstP;
472 fprintf(stderr,"at %p generating jump to %p\n", fixup, dstP );
    [all...]
  /external/valgrind/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 1273 milliseconds