/external/webrtc/sdk/android/api/org/webrtc/ |
D | YuvHelper.java | 18 public static void I420Copy(ByteBuffer srcY, int srcStrideY, ByteBuffer srcU, int srcStrideU, in I420Copy() argument 40 nativeI420Copy(srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstY, width, dstU, in I420Copy() 45 public static void I420ToNV12(ByteBuffer srcY, int srcStrideY, ByteBuffer srcU, int srcStrideU, in I420ToNV12() argument 64 nativeI420ToNV12(srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstY, width, dstUV, in I420ToNV12() 69 public static void I420Rotate(ByteBuffer srcY, int srcStrideY, ByteBuffer srcU, int srcStrideU, in I420Rotate() argument 95 nativeI420Rotate(srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstY, dstWidth, dstU, in I420Rotate() 112 public static void I420Copy(ByteBuffer srcY, int srcStrideY, ByteBuffer srcU, int srcStrideU, in I420Copy() argument 115 nativeI420Copy(srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstY, dstStrideY, dstU, in I420Copy() 119 public static void I420ToNV12(ByteBuffer srcY, int srcStrideY, ByteBuffer srcU, int srcStrideU, in I420ToNV12() argument 122 nativeI420ToNV12(srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstY, dstStrideY, dstUV, in I420ToNV12() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | copyimage.c | 541 int srcX, int srcY, int srcZ, int srcLevel, in copy_image_subdata() argument 572 srcX, srcY, newSrcZ, in copy_image_subdata() 581 GLint srcX, GLint srcY, GLint srcZ, in _mesa_CopyImageSubData_no_error() argument 597 copy_image_subdata(ctx, srcTexImage, srcRenderbuffer, srcX, srcY, srcZ, in _mesa_CopyImageSubData_no_error() 604 GLint srcX, GLint srcY, GLint srcZ, in _mesa_CopyImageSubData() argument 624 srcX, srcY, srcZ, in _mesa_CopyImageSubData() 671 if ((srcX % src_bw != 0) || (srcY % src_bh != 0) || in _mesa_CopyImageSubData() 673 (srcHeight % src_bh != 0 && (srcY + srcHeight) != src_h)) { in _mesa_CopyImageSubData() 705 srcX, srcY, srcZ, srcWidth, srcHeight, srcDepth, in _mesa_CopyImageSubData() 733 copy_image_subdata(ctx, srcTexImage, srcRenderbuffer, srcX, srcY, srcZ, in _mesa_CopyImageSubData() [all …]
|
D | copyimage.h | 40 GLint srcX, GLint srcY, GLint srcZ, 47 GLint srcX, GLint srcY, GLint srcZ, 54 GLint srcX, GLint srcY, GLint srcZ, 61 GLint srcX, GLint srcY, GLint srcZ,
|
D | image.c | 677 GLint *srcX, GLint *srcY, in _mesa_clip_readpixels() argument 713 if (*srcY < 0) { in _mesa_clip_readpixels() 714 pack->SkipRows += (0 - *srcY); in _mesa_clip_readpixels() 715 *height -= (0 - *srcY); in _mesa_clip_readpixels() 716 *srcY = 0; in _mesa_clip_readpixels() 719 if (*srcY + *height > clip_height) in _mesa_clip_readpixels() 720 *height -= (*srcY + *height - clip_height); in _mesa_clip_readpixels() 740 GLint *srcX, GLint *srcY, in _mesa_clip_copytexsubimage() argument 744 const GLint srcX0 = *srcX, srcY0 = *srcY; in _mesa_clip_copytexsubimage() 747 srcX, srcY, width, height)) { in _mesa_clip_copytexsubimage() [all …]
|
D | image.h | 114 GLint *srcX, GLint *srcY, 121 GLint *srcX, GLint *srcY,
|
/external/skia/src/image/ |
D | SkRescaleAndReadPixels.cpp | 68 int srcY = srcRect.fTop; in SkRescaleAndReadPixels() local 83 linearSurf->getCanvas()->drawImage(bmp.asImage().get(), -srcX, -srcY, sampling, &paint); in SkRescaleAndReadPixels() 87 srcY = 0; in SkRescaleAndReadPixels() 125 srcImage.get(), SkRect::Make(SkIRect::MakeXYWH(srcX, srcY, srcW, srcH)), in SkRescaleAndReadPixels() 129 srcX = srcY = 0; in SkRescaleAndReadPixels() 138 if (srcImage->readPixels(nullptr, pm, srcX, srcY)) { in SkRescaleAndReadPixels()
|
D | SkSurface.cpp | 231 bool SkSurface::readPixels(const SkPixmap& pm, int srcX, int srcY) { in readPixels() argument 232 return this->getCanvas()->readPixels(pm, srcX, srcY); in readPixels() 236 int srcX, int srcY) { in readPixels() argument 237 return this->readPixels({dstInfo, dstPixels, dstRowBytes}, srcX, srcY); in readPixels() 240 bool SkSurface::readPixels(const SkBitmap& bitmap, int srcX, int srcY) { in readPixels() argument 242 return bitmap.peekPixels(&pm) && this->readPixels(pm, srcX, srcY); in readPixels()
|
D | SkImage.cpp | 63 size_t dstRowBytes, int srcX, int srcY, CachingHint chint) const { in readPixels() argument 64 return as_IB(this)->onReadPixels(dContext, dstInfo, dstPixels, dstRowBytes, srcX, srcY, chint); in readPixels() 69 size_t dstRowBytes, int srcX, int srcY, CachingHint chint) const { in readPixels() argument 71 return this->readPixels(dContext, dstInfo, dstPixels, dstRowBytes, srcX, srcY, chint); in readPixels() 467 bool SkImage::readPixels(GrDirectContext* dContext, const SkPixmap& pmap, int srcX, int srcY, in readPixels() argument 470 srcY, chint); in readPixels() 474 bool SkImage::readPixels(const SkPixmap& pmap, int srcX, int srcY, CachingHint chint) const { in readPixels() argument 476 return this->readPixels(dContext, pmap, srcX, srcY, chint); in readPixels()
|
/external/angle/src/libANGLE/renderer/ |
D | RenderbufferImpl.h | 56 GLint srcY, 70 GLint srcY, 101 GLint srcY, in copyRenderbufferSubData() argument 119 GLint srcY, in copyTextureSubData() argument
|
/external/skqp/src/image/ |
D | SkSurface.cpp | 196 bool SkSurface::readPixels(const SkPixmap& pm, int srcX, int srcY) { in readPixels() argument 197 return this->getCanvas()->readPixels(pm, srcX, srcY); in readPixels() 201 int srcX, int srcY) { in readPixels() argument 202 return this->readPixels({dstInfo, dstPixels, dstRowBytes}, srcX, srcY); in readPixels() 205 bool SkSurface::readPixels(const SkBitmap& bitmap, int srcX, int srcY) { in readPixels() argument 207 return bitmap.peekPixels(&pm) && this->readPixels(pm, srcX, srcY); in readPixels()
|
/external/skia/src/codec/ |
D | SkSampledCodec.cpp | 313 int srcY = this->codec()->nextScanline(); in sampledDecode() local 314 if (is_coord_necessary(srcY, sampleY, dstHeight)) { in sampledDecode() 316 rowBytes * get_dst_coord(srcY, sampleY)); in sampledDecode() 335 int srcY = this->codec()->outputScanline(y); in sampledDecode() local 336 if (!is_coord_necessary(srcY, sampleY, dstHeight)) { in sampledDecode() 340 void* rowPtr = SkTAddOffset<void>(pixels, rowBytes * get_dst_coord(srcY, sampleY)); in sampledDecode()
|
/external/skqp/src/codec/ |
D | SkSampledCodec.cpp | 316 int srcY = this->codec()->nextScanline(); in sampledDecode() local 317 if (is_coord_necessary(srcY, sampleY, dstHeight)) { in sampledDecode() 319 rowBytes * get_dst_coord(srcY, sampleY)); in sampledDecode() 338 int srcY = this->codec()->outputScanline(y); in sampledDecode() local 339 if (!is_coord_necessary(srcY, sampleY, dstHeight)) { in sampledDecode() 343 void* rowPtr = SkTAddOffset<void>(pixels, rowBytes * get_dst_coord(srcY, sampleY)); in sampledDecode()
|
/external/v4l2_codec2/common/ |
D | FormatConverter.cpp | 204 const uint8_t* srcY = inputView.data()[C2PlanarLayout::PLANE_Y]; in convertBlock() local 224 libyuv::I420Copy(srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstY, dstStrideY, in convertBlock() 229 libyuv::I420ToNV12(srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstY, in convertBlock() 234 libyuv::NV12ToI420(srcY, srcStrideY, srcU, srcStrideU, dstY, dstStrideY, dstU, in convertBlock() 239 libyuv::NV21ToI420(srcY, srcStrideY, srcV, srcStrideV, dstY, dstStrideY, dstU, in convertBlock() 245 libyuv::CopyPlane(srcY, srcStrideY, dstY, dstStrideY, mVisibleSize.width, in convertBlock()
|
/external/skqp/include/core/ |
D | SkSurface.h | 560 bool readPixels(const SkPixmap& dst, int srcX, int srcY); 592 int srcX, int srcY); 622 bool readPixels(const SkBitmap& dst, int srcX, int srcY);
|
D | SkPixmap.h | 591 int srcY) const; 615 bool readPixels(const SkPixmap& dst, int srcX, int srcY) const { in readPixels() argument 616 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), srcX, srcY); in readPixels()
|
/external/webrtc/sdk/objc/components/video_frame_buffer/ |
D | RTCCVPixelBuffer.mm | 166 const uint8_t* srcY = 174 srcY += srcYStride * _cropY + _cropX; 179 nv12ToI420Scaler.NV12ToI420Scale(srcY, 284 const uint8_t* srcY = static_cast<uint8_t*>(CVPixelBufferGetBaseAddressOfPlane(_pixelBuffer, 0)); 290 srcY += srcYStride * _cropY + _cropX; 294 srcY,
|
/external/mesa3d/src/gallium/frontends/xa/ |
D | xa_renderer.c | 232 float srcX, float srcY, float dstX, float dstY, in add_vertex_data1() argument 238 compute_src_coords(srcX, srcY, src, src_matrix, width, height, in add_vertex_data1() 252 float srcX, float srcY, float maskX, float maskY, in add_vertex_data2() argument 261 compute_src_coords(srcX, srcY, src, src_matrix, width, height, in add_vertex_data2() 283 float srcY, in setup_vertex_data_yuv() argument 295 spt0[1] = srcY; in setup_vertex_data_yuv() 297 spt1[1] = srcY + srcH; in setup_vertex_data_yuv()
|
/external/angle/src/libANGLE/ |
D | Renderbuffer.cpp | 176 GLint srcY, in copyRenderbufferSubData() argument 186 ANGLE_TRY(mImplementation->copyRenderbufferSubData(context, srcBuffer, srcLevel, srcX, srcY, in copyRenderbufferSubData() 197 GLint srcY, in copyTextureSubData() argument 207 ANGLE_TRY(mImplementation->copyTextureSubData(context, srcTexture, srcLevel, srcX, srcY, srcZ, in copyTextureSubData()
|
D | Renderbuffer.h | 97 GLint srcY, 111 GLint srcY,
|
/external/skia/include/core/ |
D | SkPixmap.h | 594 int srcY) const; 618 bool readPixels(const SkPixmap& dst, int srcX, int srcY) const { in readPixels() argument 619 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), srcX, srcY); in readPixels()
|
D | SkImage.h | 808 int srcX, int srcY, 845 int srcY, 851 int srcX, int srcY, CachingHint cachingHint = kAllow_CachingHint) const; 852 bool readPixels(const SkPixmap& dst, int srcX, int srcY,
|
D | SkSurface.h | 678 bool readPixels(const SkPixmap& dst, int srcX, int srcY); 710 int srcX, int srcY); 742 bool readPixels(const SkBitmap& dst, int srcX, int srcY);
|
/external/mesa3d/src/mesa/swrast/ |
D | s_copypix.c | 436 GLint srcX, GLint srcY, GLsizei width, GLsizei height, in swrast_fast_copy_pixels() argument 486 srcY < 0 || srcY + height > (GLint) srcFb->Height || in swrast_fast_copy_pixels() 512 srcMap = map + srcY * rowStride + srcX * pixelBytes; in swrast_fast_copy_pixels() 516 if (srcY < dstY) { in swrast_fast_copy_pixels() 531 ctx->Driver.MapRenderbuffer(ctx, srcRb, srcX, srcY, in swrast_fast_copy_pixels()
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | RenderbufferVk.h | 44 GLint srcY, 58 GLint srcY,
|
D | RenderbufferVk.cpp | 204 GLint srcY, in copyRenderbufferSubData() argument 220 return vk::ImageHelper::CopyImageSubData(context, sourceVk->getImage(), srcLevel, srcX, srcY, in copyRenderbufferSubData() 229 GLint srcY, in copyTextureSubData() argument 246 return vk::ImageHelper::CopyImageSubData(context, &sourceVk->getImage(), srcLevel, srcX, srcY, in copyTextureSubData()
|