/frameworks/native/libs/gui/ |
CpuConsumer.cpp | 106 android_ycbcr ycbcr = android_ycbcr(); local 113 &ycbcr); 116 CC_LOGE("Unable to lock YCbCr buffer for CPU reading: %s (%d)", 120 bufferPointer = ycbcr.y; 153 nativeBuffer->stride = (ycbcr.y != NULL) ? 154 ycbcr.ystride : 163 nativeBuffer->dataCb = reinterpret_cast<uint8_t*>(ycbcr.cb); 164 nativeBuffer->dataCr = reinterpret_cast<uint8_t*>(ycbcr.cr); 165 nativeBuffer->chromaStride = ycbcr.cstride; 166 nativeBuffer->chromaStep = ycbcr.chroma_step [all...] |
/frameworks/rs/ |
rsGrallocConsumer.cpp | 91 android_ycbcr ycbcr = android_ycbcr(); local 98 &ycbcr); 101 ALOGE("Unable to lock YCbCr buffer for CPU reading: %s (%d)", 105 bufferPointer = ycbcr.y; 145 mAlloc->mHal.drvState.lod[1].mallocPtr = ycbcr.cr; 146 mAlloc->mHal.drvState.lod[2].mallocPtr = ycbcr.cb; 148 mAlloc->mHal.drvState.lod[0].stride = ycbcr.ystride; 149 mAlloc->mHal.drvState.lod[1].stride = ycbcr.cstride; 150 mAlloc->mHal.drvState.lod[2].stride = ycbcr.cstride; 153 mAlloc->mHal.drvState.yuv.step = ycbcr.chroma_step [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/ |
vl_vertex_buffers.c | 221 buffer->ycbcr[i].resource = pipe_buffer_create 228 if (!buffer->ycbcr[i].resource) 253 pipe_resource_reference(&buffer->ycbcr[i].resource, NULL); 272 buf.buffer = buffer->ycbcr[component].resource; 301 buffer->ycbcr[i].vertex_stream = pipe_buffer_map 304 buffer->ycbcr[i].resource, 306 &buffer->ycbcr[i].transfer 328 return buffer->ycbcr[component].vertex_stream; 356 pipe_buffer_unmap(pipe, buffer->ycbcr[i].transfer); 372 pipe_resource_reference(&buffer->ycbcr[i].resource, NULL) [all...] |
vl_vertex_buffers.h | 99 } ycbcr[VL_NUM_COMPONENTS]; member in struct:vl_vertex_buffer
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_vertex_buffers.c | 221 buffer->ycbcr[i].resource = pipe_buffer_create 228 if (!buffer->ycbcr[i].resource) 253 pipe_resource_reference(&buffer->ycbcr[i].resource, NULL); 272 buf.buffer = buffer->ycbcr[component].resource; 301 buffer->ycbcr[i].vertex_stream = pipe_buffer_map 304 buffer->ycbcr[i].resource, 306 &buffer->ycbcr[i].transfer 328 return buffer->ycbcr[component].vertex_stream; 356 pipe_buffer_unmap(pipe, buffer->ycbcr[i].transfer); 372 pipe_resource_reference(&buffer->ycbcr[i].resource, NULL) [all...] |
vl_vertex_buffers.h | 99 } ycbcr[VL_NUM_COMPONENTS]; member in struct:vl_vertex_buffer
|
/hardware/qcom/display/msm8x26/libgralloc/ |
mapper.cpp | 250 struct android_ycbcr *ycbcr) 261 ycbcr->y = (void*)hnd->base; 262 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height); 263 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1); 264 ycbcr->ystride = ystride; 265 ycbcr->cstride = ystride; 266 ycbcr->chroma_step = 2; 267 memset(ycbcr->reserved, 0, sizeof(ycbcr->reserved));
|
gralloc.cpp | 50 struct android_ycbcr *ycbcr);
|
/frameworks/native/include/ui/ |
GraphicBufferMapper.h | 49 int usage, const Rect& bounds, android_ycbcr *ycbcr);
|
GraphicBuffer.h | 97 status_t lockYCbCr(uint32_t usage, android_ycbcr *ycbcr); 98 status_t lockYCbCr(uint32_t usage, const Rect& rect, android_ycbcr *ycbcr);
|
/hardware/qcom/display/msm8960/libgralloc/ |
mapper.cpp | 250 struct android_ycbcr *ycbcr) 261 ycbcr->y = (void*)hnd->base; 262 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height); 263 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1); 264 ycbcr->ystride = ystride; 265 ycbcr->cstride = ystride; 266 ycbcr->chroma_step = 2; 267 memset(ycbcr->reserved, 0, sizeof(ycbcr->reserved));
|
gralloc.cpp | 50 struct android_ycbcr *ycbcr);
|
/hardware/qcom/display/msm8974/libgralloc/ |
mapper.cpp | 251 struct android_ycbcr *ycbcr) 262 ycbcr->y = (void*)hnd->base; 263 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height); 264 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1); 265 ycbcr->ystride = ystride; 266 ycbcr->cstride = ystride; 267 ycbcr->chroma_step = 2; 268 memset(ycbcr->reserved, 0, sizeof(ycbcr->reserved));
|
gralloc.cpp | 50 struct android_ycbcr *ycbcr);
|
/frameworks/native/libs/ui/ |
GraphicBufferMapper.cpp | 88 int usage, const Rect& bounds, android_ycbcr *ycbcr) 95 ycbcr);
|
GraphicBuffer.cpp | 176 status_t GraphicBuffer::lockYCbCr(uint32_t usage, android_ycbcr *ycbcr) 179 status_t res = lockYCbCr(usage, lockBounds, ycbcr); 184 android_ycbcr *ycbcr) 193 status_t res = getBufferMapper().lockYCbCr(handle, usage, rect, ycbcr);
|
/device/generic/goldfish/opengl/system/gralloc/ |
gralloc.cpp | 777 android_ycbcr *ycbcr) 779 // Not supporting fallback module for YCbCr 784 if (!ycbcr) { 785 ALOGE("gralloc_lock_ycbcr got NULL ycbcr struct"); 852 ycbcr->y = cpu_addr + yOffset; 853 ycbcr->cb = cpu_addr + uOffset; 854 ycbcr->cr = cpu_addr + vOffset; 855 ycbcr->ystride = yStride; 856 ycbcr->cstride = cStride; 857 ycbcr->chroma_step = cStep [all...] |
/hardware/libhardware/include/hardware/ |
gralloc.h | 46 * Add support for flexible YCbCr format with (*lock_ycbcr)() method. 230 * difference that it fills a struct ycbcr with a description of the buffer 242 struct android_ycbcr *ycbcr);
|
/device/generic/goldfish/camera/ |
EmulatedFakeCamera3.cpp | 906 android_ycbcr ycbcr = android_ycbcr(); local 910 &ycbcr); 913 destBuf.img = static_cast<uint8_t*>(ycbcr.y); [all...] |