/external/skia/src/effects/ |
H A D | Sk1DPathEffect.cpp | 115 SkPoint srcP[4], dstP[3]; local 121 if (morphpoints(dstP, srcP, 1, meas, dist)) { 122 dst->moveTo(dstP[0]); 131 if (morphpoints(dstP, &srcP[1], 2, meas, dist)) { 132 dst->quadTo(dstP[0], dstP[1]); 136 if (morphpoints(dstP, &srcP[1], 3, meas, dist)) { 137 dst->cubicTo(dstP[0], dstP[1], dstP[ [all...] |
H A D | SkTableMaskFilter.cpp | 42 uint8_t* dstP = dst->fImage; local 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;
|
H A D | Sk2DPathEffect.cpp | 98 SkPoint src[2], dstP[2]; local 102 this->getMatrix().mapPoints(dstP, src, 2); 104 dst->moveTo(dstP[0]); 105 dst->lineTo(dstP[1]);
|
/external/skia/src/core/ |
H A D | SkDevice.cpp | 187 bool SkBaseDevice::readPixels(const SkImageInfo& info, void* dstP, size_t rowBytes, int x, int y) { argument 190 SkASSERT(dstP); 198 return this->onReadPixels(info, dstP, rowBytes, x, y); 289 SkPoint srcP[4], dstP[3]; local 295 morphpoints(dstP, srcP, 1, meas, matrix); 296 dst->moveTo(dstP[0]); 302 morphpoints(dstP, srcP, 2, meas, matrix); 303 dst->quadTo(dstP[0], dstP[1]); 306 morphpoints(dstP, [all...] |
H A D | SkConfig8888.cpp | 117 uint32_t* dstP = static_cast<uint32_t*>(dst->fPixels); local 122 proc(dstP, srcP, width); 123 dstP += dstInc;
|
H A D | SkScalerContext.cpp | 261 uint16_t* dstP = (uint16_t*)dst.fImage; local 320 dstP[pixel_x] = SkPack888ToRGB16(r, g, b); 322 dstP = (uint16_t*)((char*)dstP + dstRB);
|
H A D | SkBitmap.cpp | 467 uint8_t* dstP = reinterpret_cast<uint8_t*>(dst); local 468 for (int row = 0; row < fInfo.height(); row++, srcP += fRowBytes, dstP += dstRowBytes) { 469 memcpy(dstP, srcP, rowBytes);
|
H A D | SkCanvas.cpp | 746 bool SkCanvas::readPixels(const SkImageInfo& dstInfo, void* dstP, size_t rowBytes, int x, int y) { argument 753 SkReadPixelsRec rec(dstInfo, dstP, rowBytes, x, y);
|
/external/skia/bench/ |
H A D | RepeatTileBench.cpp | 77 uint8_t* dstP = dst->getAddr8(0, y); local 79 *dstP++ = compute_666_index(*srcP++);
|
H A D | BitmapBench.cpp | 57 uint8_t* dstP = dst->getAddr8(0, y); local 59 *dstP++ = compute666Index(*srcP++);
|
/external/skia/src/image/ |
H A D | SkImage_Gpu.cpp | 155 const SkIPoint dstP = SkIPoint::Make(0, 0); local 156 ctx->copySurface(dst, src, srcR, dstP, GrContext::kFlushWrites_PixelOp);
|
/external/skia/tests/ |
H A D | BitmapCopyTest.cpp | 307 const char* dstP = (const char*)dst.getAddr(0, 0); local 308 REPORTER_ASSERT(reporter, srcP != dstP); 309 REPORTER_ASSERT(reporter, !memcmp(srcP, dstP,
|
/external/valgrind/coregrind/ |
H A D | m_transtab.c | 1608 UChar* dstP; local 1683 dstP = (UChar*)tcptr; 1685 VG_(memcpy)(dstP, srcP, code_len); 1729 dstP + offs_profInc, 1734 VG_(invalidate_icache)( dstP, code_len ); 2229 HChar *srcP, *dstP; local 2260 dstP = (HChar*)&unredir_tc[unredir_tc_used]; 2263 dstP[j] = srcP[j]; 2265 VG_(invalidate_icache)( dstP, code_len ); 2269 unredir_tt[i].hcode = (Addr)dstP; [all...] |
/external/valgrind/VEX/switchback/ |
H A D | 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 );
|
/external/valgrind/VEX/unused/ |
H A D | 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 );
|