/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...] |
/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...] |
/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/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...] |
/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;
|
/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...] |