/external/opencv3/modules/core/test/ |
test_dxt.cpp | 252 Mat src0row, src1row, dstrow; local 258 dstrow = _dst.row(i); 259 convertFromCCS( src0row, src1row, dstrow, 0 ); 265 dstrow = _dst.col(0); 266 convertFromCCS( src0row, src0row, dstrow, 0 ); 270 dstrow = _dst.col(len/2); 271 convertFromCCS( src0row, src0row, dstrow, 0 );
|
/external/skia/src/codec/ |
SkSwizzler.h | 146 * @param dstRow Row in which to write the resulting pixels. 156 typedef void (*RowProc)(void* SK_RESTRICT dstRow, 162 static void SkipLeading8888ZerosThen(void* SK_RESTRICT dstRow,
|
SkRawCodec.cpp | 694 void* dstRow = dst; 717 swizzler->swizzle(dstRow, &srcRow[0]); 718 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes);
|
SkGifCodec.cpp | 509 void* dstRow = SkTAddOffset<void>(dst, dstRowBytes * this->outputScanline(y)); 510 fSwizzler->swizzle(dstRow, fSrcBuffer.get());
|
/external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/ |
FreeType.java | 620 int[] dstRow = new int[width];
630 dstRow[x + ii] = rgba;
632 dstRow[x + ii] = 0;
635 dst.put(dstRow);
646 dstRow[x] = rgb | (int)(a * alpha);
648 dst.put(dstRow);
|
/external/skia/src/gpu/vk/ |
GrVkGpu.cpp | 367 char* dstRow = reinterpret_cast<char*>(mapPtr)+(height - 1)*layout.rowPitch; 369 memcpy(dstRow, srcRow, trimRowBytes); 371 dstRow -= layout.rowPitch; 392 char* dstRow = reinterpret_cast<char*>(mapPtr)+(height - 1)*trimRowBytes; 394 memcpy(dstRow, srcRow, trimRowBytes); 396 dstRow -= trimRowBytes; [all...] |
/external/opencv3/modules/imgproc/src/ |
demosaicing.cpp | 946 uchar* dstrow = dst + dststep*y + 6; local [all...] |
clahe.cpp | 288 T* dstRow = dst_.ptr<T>(y); 313 dstRow[x] = cv::saturate_cast<T>(res);
|
/external/dng_sdk/source/ |
dng_bad_pixels.cpp | 168 for (int32 dstRow = dstArea.t; dstRow < dstArea.b; dstRow++) 171 const uint16 *sPtr = srcBuffer.ConstPixel_uint16 (dstRow, dstArea.l, 0); 172 uint16 *dPtr = dstBuffer.DirtyPixel_uint16 (dstRow, dstArea.l, 0); 185 if (IsGreen (dstRow, dstCol)) // Green pixel [all...] |
dng_lens_correction.cpp | 1336 for (int32 dstRow = dstArea.t; dstRow < dstArea.b; dstRow++) 1346 const dng_point_real64 dPos ((real64) dstRow, [all...] |
dng_render.cpp | [all...] |
dng_negative.cpp | [all...] |
/external/skia/src/effects/ |
SkMatrixConvolutionImageFilter.cpp | 259 uint32_t* dstRow = result.getAddr32(0, y); 261 dstRow[x] = SkUnPreMultiply::PMColorToColor(srcRow[x]);
|
/external/opencv3/modules/superres/src/ |
btv_l1.cpp | 236 T * const dstRow = dst.ptr<T>(Y); 239 dstRow[X] = srcRow[x]; 380 T * const dstRow = dst.ptr<T>(i); 392 dstRow[j] += btvWeights[ind] * (diffSign(srcVal, srcRow3[j + l]) [all...] |
/external/skia/src/core/ |
SkBitmap.cpp | [all...] |
SkScalerContext.cpp | 455 uint8_t* dstRow = dst.fImage; 459 dstRow[x] = SkGetPackedA32(srcRow[x]); 463 dstRow[x] = 0; 465 dstRow += dstRB;
|
/external/mesa3d/src/mesa/main/ |
format_unpack.c | [all...] |