HomeSort by relevance Sort by last modified time
    Searched full:srcrow (Results 1 - 25 of 46) sorted by null

1 2

  /external/skia/src/codec/
SkMaskSwizzler.cpp 13 void* dstRow, const uint8_t* srcRow, int width, SkMasks* masks,
17 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
30 void* dstRow, const uint8_t* srcRow, int width, SkMasks* masks,
34 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
47 void* dstRow, const uint8_t* srcRow, int width, SkMasks* masks,
51 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
65 void* dstRow, const uint8_t* srcRow, int width, SkMasks* masks,
69 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
83 void* dstRow, const uint8_t* srcRow, int width, SkMasks* masks,
87 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX
    [all...]
SkBmpMaskCodec.cpp 82 uint8_t* srcRow = this->srcBuffer();
86 if (this->stream()->read(srcRow, this->srcRowBytes()) != this->srcRowBytes()) {
96 fMaskSwizzler->swizzle(this->xformBuffer(), srcRow);
99 fMaskSwizzler->swizzle(dstRow, srcRow);
SkMaskSwizzler.h 60 typedef void (*RowProc)(void* dstRow, const uint8_t* srcRow, int width,
SkPngCodec.cpp 687 png_bytep srcRow = fInterlaceBuffer.get();
690 this->applyXformRow(dst, srcRow);
692 srcRow = SkTAddOffset<png_byte>(srcRow, fPng_rowbytes);
736 // Offset srcRow by get_start_coord rows. We do not need to account for fFirstRow,
738 png_bytep srcRow = SkTAddOffset<png_byte>(fInterlaceBuffer.get(),
742 this->applyXformRow(dst, srcRow);
744 srcRow = SkTAddOffset<png_byte>(srcRow, fPng_rowbytes * sampleY);
    [all...]
SkRawCodec.cpp 724 SkAutoTMalloc<uint8_t> srcRow(width * 3);
727 buffer.fData = &srcRow[0];
747 swizzler->swizzle(xformBuffer.get(), &srcRow[0]);
751 swizzler->swizzle(dstRow, &srcRow[0]);
  /external/skqp/src/codec/
SkMaskSwizzler.cpp 13 void* dstRow, const uint8_t* srcRow, int width, SkMasks* masks,
17 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
30 void* dstRow, const uint8_t* srcRow, int width, SkMasks* masks,
34 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
47 void* dstRow, const uint8_t* srcRow, int width, SkMasks* masks,
51 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
65 void* dstRow, const uint8_t* srcRow, int width, SkMasks* masks,
69 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
83 void* dstRow, const uint8_t* srcRow, int width, SkMasks* masks,
87 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX
    [all...]
SkBmpMaskCodec.cpp 82 uint8_t* srcRow = this->srcBuffer();
86 if (this->stream()->read(srcRow, this->srcRowBytes()) != this->srcRowBytes()) {
96 fMaskSwizzler->swizzle(this->xformBuffer(), srcRow);
99 fMaskSwizzler->swizzle(dstRow, srcRow);
SkMaskSwizzler.h 60 typedef void (*RowProc)(void* dstRow, const uint8_t* srcRow, int width,
SkPngCodec.cpp 687 png_bytep srcRow = fInterlaceBuffer.get();
690 this->applyXformRow(dst, srcRow);
692 srcRow = SkTAddOffset<png_byte>(srcRow, fPng_rowbytes);
736 // Offset srcRow by get_start_coord rows. We do not need to account for fFirstRow,
738 png_bytep srcRow = SkTAddOffset<png_byte>(fInterlaceBuffer.get(),
742 this->applyXformRow(dst, srcRow);
744 srcRow = SkTAddOffset<png_byte>(srcRow, fPng_rowbytes * sampleY);
    [all...]
  /external/skia/src/images/
SkJpegEncoder.cpp 233 const void* srcRow = fSrc.addr(0, fCurrRow);
235 JSAMPLE* jpegSrcRow = (JSAMPLE*) srcRow;
237 fEncoderMgr->proc()((char*)fStorage.get(), (const char*)srcRow, fSrc.width(),
243 srcRow = SkTAddOffset<const void>(srcRow, fSrc.rowBytes());
SkPngEncoder.cpp 405 const void* srcRow = fSrc.addr(0, fCurrRow);
407 fEncoderMgr->proc()((char*) fStorage.get(), (const char*) srcRow, fSrc.width(),
412 srcRow = SkTAddOffset<const void>(srcRow, fSrc.rowBytes());
  /external/skqp/src/images/
SkJpegEncoder.cpp 233 const void* srcRow = fSrc.addr(0, fCurrRow);
235 JSAMPLE* jpegSrcRow = (JSAMPLE*) srcRow;
237 fEncoderMgr->proc()((char*)fStorage.get(), (const char*)srcRow, fSrc.width(),
243 srcRow = SkTAddOffset<const void>(srcRow, fSrc.rowBytes());
SkPngEncoder.cpp 405 const void* srcRow = fSrc.addr(0, fCurrRow);
407 fEncoderMgr->proc()((char*) fStorage.get(), (const char*) srcRow, fSrc.width(),
412 srcRow = SkTAddOffset<const void>(srcRow, fSrc.rowBytes());
  /external/mesa3d/src/mesa/swrast/
s_blit.c 299 GLint srcRow = IROUND(srcRowF);
302 assert(srcRow >= 0);
303 assert(srcRow < srcHeight);
306 srcRow = srcHeight - 1 - srcRow;
310 if (prevY != srcRow) {
311 GLubyte *srcRowStart = srcMap + srcRowStride * srcRow;
336 prevY = srcRow;
627 GLfloat srcRow = (dstRow + 0.5F) / dstHeight * srcHeight - 0.5F;
628 GLint srcRow0 = MAX2(0, IFLOOR(srcRow));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawImageObjectUtil.cpp 63 const deUint8 *srcRow = reinterpret_cast<const deUint8 *>(srcBuffer);
65 srcStart = srcRow;
74 deMemcpy(dstRow, srcRow, static_cast<size_t>(size));
83 srcRow = srcStart + offsetDepthSrc;
87 deMemcpy(dstRow, srcRow, static_cast<size_t>(rowPitch));
88 srcRow += pixelSize * width;
115 const deUint8 *srcRow = reinterpret_cast<const deUint8 *>(srcBuffer);
117 srcStart = srcRow;
126 deMemcpy(dstRow, srcRow, static_cast<size_t>(size));
134 srcRow = srcStart + offsetDepthSrc
    [all...]
  /external/skia/src/core/
SkBlitMask_D32.cpp 31 const uint16_t* srcRow = (const uint16_t*)mask;
46 proc(dstRow, srcRow, color, width, opaqueDst);
48 srcRow = (const uint16_t*)((const char*)srcRow + maskRB);
SkConvertPixels.cpp 217 const SkImageInfo& srcInfo, const void* srcRow, size_t srcRB,
220 SkJumper_MemoryCtx src = { (void*)srcRow, (int)(srcRB / srcInfo.bytesPerPixel()) },
SkBlitter_ARGB32.cpp 32 const SkPMColor* srcRow = reinterpret_cast<const SkPMColor*>(mask.getAddr8(x, y));
35 proc(dstRow, srcRow, width, alpha);
37 srcRow = (const SkPMColor*)((const char*)srcRow + mask.fRowBytes);
  /external/skqp/src/core/
SkBlitMask_D32.cpp 31 const uint16_t* srcRow = (const uint16_t*)mask;
46 proc(dstRow, srcRow, color, width, opaqueDst);
48 srcRow = (const uint16_t*)((const char*)srcRow + maskRB);
SkConvertPixels.cpp 217 const SkImageInfo& srcInfo, const void* srcRow, size_t srcRB,
220 SkJumper_MemoryCtx src = { (void*)srcRow, (int)(srcRB / srcInfo.bytesPerPixel()) },
  /external/dng_sdk/source/
dng_mosaic_info.cpp 1052 int32 srcRow = dstRow >> sRowShift;
1061 const void *sPtr = srcBuffer.ConstPixel (srcRow,
1224 int32 srcRow = srcArea.t;
1252 const uint16 *sPtr = srcBuffer.ConstPixel_uint16 (srcRow,
1324 srcRow += cellRows;
1567 for (int32 srcRow = 0; srcRow < test.v; srcRow++)
1573 uint8 srcKey = fCFAPattern [srcRow + phaseV]
    [all...]
dng_resample.cpp 735 int32 srcRow = (rowCoord >> kResampleSubsampleBits) + offsetV;
740 const real32 *sPtr = srcBuffer.ConstPixel_real32 (srcRow,
789 int32 srcRow = (rowCoord >> kResampleSubsampleBits) + offsetV;
794 const uint16 *sPtr = srcBuffer.ConstPixel_uint16 (srcRow,
  /external/llvm/test/Transforms/LoopStrengthReduce/X86/
2011-12-04-loserreg.ll 22 define i64 @test(i64 %count, float* nocapture %srcrow, i32* nocapture %destrow) nounwind uwtable ssp {
31 %p.035 = phi float* [ %incdec.ptr4, %for.body ], [ %srcrow, %entry ]
  /external/mesa3d/src/mesa/main/
image.c 405 const GLubyte *srcRow = (const GLubyte *)
414 const GLubyte *src = srcRow;
461 srcRow += srcStride;
1003 const uint8_t *srcrow; local
1007 srcrow = src;
1010 swap2_copy((GLushort *)dstrow, (GLushort *)srcrow, width * swapsPerPixel);
1012 swap4_copy((GLuint *)dstrow, (GLuint *)srcrow, width * swapsPerPixel);
1014 srcrow += stride;
format_unpack.py 430 const GLubyte *srcRow;
436 srcRow = ((const GLubyte *) src) + srcRowStride * y + srcPixStride * x;
440 _mesa_unpack_rgba_row(format, width, srcRow, (GLfloat (*)[4]) dstRow);
443 srcRow += srcRowStride;

Completed in 3807 milliseconds

1 2