/external/skia/src/gpu/ |
GrTextureToYUVPlanes.cpp | 208 SkISize uvSize = sizes[1]; 210 SkAutoSTMalloc<128 * 128, uint32_t> tempUV(uvSize.fWidth * uvSize.fHeight); 211 if (!uvTex->readPixels(0, 0, uvSize.fWidth, uvSize.fHeight, 216 size_t uRowBytes = rowBytes[1] ? rowBytes[1] : uvSize.fWidth; 217 size_t vRowBytes = rowBytes[2] ? rowBytes[2] : uvSize.fWidth; 218 if (uRowBytes < (size_t)uvSize.fWidth || vRowBytes < (size_t)uvSize.fWidth) { 221 for (int j = 0; j < uvSize.fHeight; ++j) [all...] |
/prebuilts/misc/common/swig/include/2.0.11/perl5/ |
perlhead.swg | 59 # if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
|
/external/opencv3/3rdparty/libwebp/dec/ |
frame.c | 169 const int uvsize = (extra_y_rows / 2) * dec->cache_uv_stride_; local 173 uint8_t* const udst = dec->cache_u_ - uvsize + uv_offset; 174 uint8_t* const vdst = dec->cache_v_ - uvsize + uv_offset; 243 memcpy(dec->cache_u_ - uvsize, udst + 8 * dec->cache_uv_stride_, uvsize); 244 memcpy(dec->cache_v_ - uvsize, vdst + 8 * dec->cache_uv_stride_, uvsize);
|
/external/skia/src/images/ |
SkImageDecoder_libjpeg.cpp | 592 SkISize uvSize = compute_yuv_size(cinfo, 1, kSizeForMemoryAllocation_SizeType); 593 SkASSERT(uvSize == compute_yuv_size(cinfo, 2, kSizeForMemoryAllocation_SizeType)); 604 int uvMaxH = uvSize.height() - 1; 660 memcpy(&outputU[uvMaxH * rowBytesU], uLastRow, uvSize.width()); 661 memcpy(&outputV[uvMaxH * rowBytesV], vLastRow, uvSize.width()); [all...] |
/hardware/ti/omap4xxx/camera/ |
AppCallbackNotifier.cpp | 458 int &uvSize, 464 uvSize = uvStride * height / 2; 465 size = ySize + uvSize * 2; 617 int yStride, uvStride, ySize, uvSize, size; 618 alignYV12(width, height, yStride, uvStride, ySize, uvSize, size); 621 bufferDst_U = (uint16_t *) (((uint8_t*)dst) + ySize + uvSize); [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/ |
CameraFormatsActivity.java | 635 int uvSize = uvStride * h / 2; 636 expectedBytes = ySize + uvSize * 2; 751 int uvSize = uvStride * h / 2; 753 int uRowIndex = ySize + uvSize;
|
/external/webp/src/dec/ |
frame.c | 419 const int uvsize = (extra_y_rows / 2) * dec->cache_uv_stride_; local 423 uint8_t* const udst = dec->cache_u_ - uvsize + uv_offset; 424 uint8_t* const vdst = dec->cache_v_ - uvsize + uv_offset; 499 memcpy(dec->cache_u_ - uvsize, udst + 8 * dec->cache_uv_stride_, uvsize); 500 memcpy(dec->cache_v_ - uvsize, vdst + 8 * dec->cache_uv_stride_, uvsize);
|
/hardware/ti/omap4-aah/camera/ |
AppCallbackNotifier.cpp | 470 size_t &uvSize, 476 uvSize = uvStride * height / 2; 477 size = ySize + uvSize * 2; 629 size_t yStride, uvStride, ySize, uvSize, size; 630 alignYV12(width, height, yStride, uvStride, ySize, uvSize, size); 633 bufferDst_U = (uint16_t *) (((uint8_t*)dst) + ySize + uvSize); [all...] |
/frameworks/rs/driver/ |
rsdAllocation.cpp | 266 size_t uvSize = 0; 281 uvSize += state->lod[2].stride * state->lod[2].dimY; 286 uvSize += state->lod[1].stride * state->lod[2].dimY; 295 uvSize += state->lod[1].stride * state->lod[1].dimY; 302 return uvSize; [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
Vp8CodecTestBase.java | [all...] |
/frameworks/av/services/camera/libcameraservice/api1/ |
Camera2Client.cpp | [all...] |
/frameworks/base/core/java/android/hardware/ |
Camera.java | [all...] |