HomeSort by relevance Sort by last modified time
    Searched refs:dstP (Results 1 - 8 of 8) 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 295 bool SkBaseDevice::readPixels(const SkImageInfo& info, void* dstP, size_t rowBytes, int x, int y) {
296 return this->onReadPixels(info, dstP, rowBytes, x, y);
370 SkPoint srcP[4], dstP[3];
376 morphpoints(dstP, srcP, 1, meas, matrix);
377 dst->moveTo(dstP[0]);
383 morphpoints(dstP, srcP, 2, meas, matrix);
384 dst->quadTo(dstP[0], dstP[1]);
387 morphpoints(dstP, &srcP[1], 2, meas, matrix);
388 dst->quadTo(dstP[0], dstP[1])
    [all...]
SkScalerContext.cpp 244 uint16_t* dstP = (uint16_t*)dst.fImage;
303 dstP[pixel_x] = SkPack888ToRGB16(r, g, b);
305 dstP = (uint16_t*)((char*)dstP + dstRB);
SkCanvas.cpp 818 bool SkCanvas::readPixels(const SkImageInfo& dstInfo, void* dstP, size_t rowBytes, int x, int y) {
824 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/valgrind/coregrind/
m_transtab.c     [all...]

Completed in 337 milliseconds