/hardware/google/av/media/eco/include/eco/ |
D | ECOService.h | 83 int32_t mHeight; member 87 : mWidth(w), mHeight(h), mIsCameraRecording(isCameraRecording) {} in SessionConfig() 90 return mWidth == cfg.mWidth && mHeight == cfg.mHeight && 96 return p1.mWidth == p2.mWidth && p1.mHeight == p2.mHeight && 105 return cfg.mWidth | (cfg.mHeight << 16) | ((int32_t)cfg.mIsCameraRecording << 31); in operator()
|
D | ECOSession.h | 152 const int32_t mHeight; variable
|
/hardware/google/av/media/eco/tests/ |
D | FakeECOServiceInfoListener.cpp | 42 mHeight(height), in FakeECOServiceInfoListener() 46 mHeight, mIsCameraRecording); in FakeECOServiceInfoListener() 51 : mWidth(width), mHeight(height), mIsCameraRecording(isCameraRecording) { in FakeECOServiceInfoListener() 53 mHeight, mIsCameraRecording); in FakeECOServiceInfoListener()
|
D | FakeECOServiceStatsProvider.cpp | 42 mHeight(height), in FakeECOServiceStatsProvider() 49 mWidth, mHeight, mIsCameraRecording, mFrameRate); in FakeECOServiceStatsProvider() 55 mHeight(height), in FakeECOServiceStatsProvider() 61 mWidth, mHeight, mIsCameraRecording, mFrameRate); in FakeECOServiceStatsProvider()
|
D | FakeECOServiceStatsProvider.h | 90 int32_t mHeight; variable
|
D | FakeECOServiceInfoListener.h | 78 int32_t mHeight; variable
|
/hardware/interfaces/graphics/composer/2.2/utils/vts/ |
D | ReadbackVts.cpp | 198 mHeight = height; in ReadbackBuffer() 220 mBufferHandle = mGralloc->allocate(mWidth, mHeight, mLayerCount, mFormat, mUsage, in setReadbackBuffer() 222 ASSERT_NE(false, mGralloc->validateBufferSize(mBufferHandle, mWidth, mHeight, mLayerCount, in setReadbackBuffer() 234 ReadbackHelper::compareColorBuffers(expectedColors, bufData, mStride, mWidth, mHeight, in checkReadbackBuffer() 267 mHeight = height; 297 new GraphicBuffer(mBufferHandle, GraphicBuffer::CLONE_HANDLE, mWidth, mHeight, in toRenderEngineLayerSettings() 304 const float scaleY = (mSourceCrop.bottom - mSourceCrop.top) / (mHeight); in toRenderEngineLayerSettings() 306 const float translateY = mSourceCrop.top / (mHeight); in toRenderEngineLayerSettings() 318 ReadbackHelper::fillBuffer(mWidth, mHeight, mStride, bufData, mFormat, expectedColors)); in fillBuffer() 331 mBufferHandle = mGralloc->allocate(mWidth, mHeight, mLayerCount, mFormat, mUsage, in setBuffer() [all …]
|
/hardware/libhardware/modules/camera/3_0/ |
D | Stream.cpp | 41 mHeight(s->height), in Stream() 181 if (s->height != mHeight) { in isValidReuseStream() 183 __func__, mId, s->height, mHeight); in isValidReuseStream() 229 dprintf(fd, "Width: %" PRIu32 " Height: %" PRIu32 "\n", mWidth, mHeight); in dump()
|
D | Stream.h | 65 const uint32_t mHeight; variable
|
/hardware/google/av/media/eco/ |
D | ECOSession.cpp | 74 mHeight(height), in ECOSession() 76 ECOLOGI("ECOSession created with w: %d, h: %d, isCameraRecording: %d", mWidth, mHeight, in ECOSession() 100 ECOLOGI("ECOSession destroyed with w: %d, h: %d, isCameraRecording: %d", mWidth, mHeight, in ~ECOSession() 215 if (height != mHeight) { in processSessionStats() 216 ECOLOGW("Codec height: %d, expected: %d", height, mHeight); in processSessionStats() 227 if (mOutputHeight != mHeight) { in processSessionStats() 228 ECOLOGW("Codec output height: %d, expected: %d", mOutputHeight, mHeight); in processSessionStats() 530 *_aidl_return = mHeight; in getHeight() 556 mWidth, mHeight, mIsCameraRecording, mTargetBitrateBps, mCodecType, mCodecProfile, in dump()
|
/hardware/interfaces/automotive/evs/1.0/default/ |
D | EvsCamera.cpp | 55 mHeight = 480; // full NTSC/VGA in EvsCamera() 59 mHeight = 240; // 1/2 NTSC/VGA in EvsCamera() 314 status_t result = alloc.allocate(mWidth, mHeight, mFormat, 1, mUsage, in increaseAvailableFrames_Locked() 317 ALOGE("Error %d allocating %d x %d graphics buffer", result, mWidth, mHeight); in increaseAvailableFrames_Locked() 425 buff.height = mHeight; in generateFrames()
|
D | EvsCamera.h | 75 uint32_t mHeight = 0; // Vertical pixel count in the buffers variable
|
/hardware/qcom/display/msm8994/libhdmi/ |
D | hdmi.h | 40 int mMode, mWidth, mHeight, mFps; member 44 : mMode(mode), mWidth(width), mHeight(height), mFps(fps), mModeOrder(order) in EDIDData()
|
D | hdmi.cpp | 661 height = gEDIDData[dataIndex].mHeight; in getAttrForMode() 773 yres = gEDIDData[dataIndex].mHeight; in getAttrForConfig()
|
/hardware/interfaces/camera/device/3.4/default/ |
D | ExternalCameraUtils.cpp | 46 mWidth(width), mHeight(height), mFourcc(fourcc) {} in Frame() 106 if ((mWidth % 2) || (mHeight % 2)) { in allocate() 107 ALOGE("%s: bad dimension %dx%d (not multiple of 2)", __FUNCTION__, mWidth, mHeight); in allocate() 111 uint32_t dataSize = mWidth * mHeight * 3 / 2; // YUV420 in allocate() 119 uint8_t* cbStart = mData.data() + mWidth * mHeight; in allocate() 120 uint8_t* crStart = cbStart + mWidth * mHeight / 4; in allocate() 143 static_cast<int32_t>(mHeight)}; in getLayout() 155 (rect.top + rect.height) > static_cast<int>(mHeight) || in getCroppedLayout() 164 uint8_t* cbStart = mData.data() + mWidth * mHeight; in getCroppedLayout() 165 uint8_t* crStart = cbStart + mWidth * mHeight / 4; in getCroppedLayout() [all …]
|
D | ExternalCameraDeviceSession.cpp | 936 Size inSz = {in->mWidth, in->mHeight}; in cropAndScaleLocked() 1028 Size inSz {in->mWidth, in->mHeight}; in cropAndScaleThumbLocked() 1031 (mYu12ThumbFrame->mWidth * mYu12ThumbFrame->mHeight)) { in cropAndScaleThumbLocked() 1034 mYu12ThumbFrame->mWidth, mYu12ThumbFrame->mHeight); in cropAndScaleThumbLocked() 1261 mYu12Frame->mWidth, mYu12Frame->mHeight); in createJpegLocked() 1472 mYu12Frame->mWidth, mYu12Frame->mHeight, mYu12Frame->mWidth, mYu12Frame->mHeight); in threadLoop() 1613 mYu12Frame->mHeight != v4lSize.height) { in allocateIntermediateBuffers() 1626 mYu12ThumbFrame->mHeight != thumbSize.height) { in allocateIntermediateBuffers()
|
/hardware/interfaces/automotive/evs/1.1/default/ |
D | EvsCamera.cpp | 415 status_t result = alloc.allocate(mWidth, mHeight, mFormat, 1, mUsage, in increaseAvailableFrames_Locked() 418 ALOGE("Error %d allocating %d x %d graphics buffer", result, mWidth, mHeight); in increaseAvailableFrames_Locked() 528 pDesc->height = mHeight; in generateFrames() 708 evsCamera->mHeight = it->second[2]; in Create()
|
D | EvsCamera.h | 123 uint32_t mHeight = 0; // Vertical pixel count in the buffers variable
|
/hardware/interfaces/graphics/composer/2.2/utils/vts/include/composer-vts/2.2/ |
D | ReadbackVts.h | 131 uint32_t mHeight; variable 189 uint32_t mHeight; variable
|
/hardware/interfaces/camera/device/3.6/default/ |
D | ExternalCameraOfflineSession.cpp | 94 Size inputSize = { mOfflineReqs[0]->frameIn->mWidth, mOfflineReqs[0]->frameIn->mHeight}; in initOutputThread() 156 mYu12Frame->mWidth, mYu12Frame->mHeight, mYu12Frame->mWidth, mYu12Frame->mHeight); in threadLoop()
|
/hardware/interfaces/graphics/composer/2.2/vts/functional/ |
D | VtsHalGraphicsComposerV2_2ReadbackTest.cpp | 453 mPrimaryDisplay, layer->mWidth, layer->mHeight, clientFormat, clientDataspace); in TEST_P() 458 << " height: " << layer->mHeight in TEST_P() 468 mGralloc->allocate(layer->mWidth, layer->mHeight, layer->mLayerCount, in TEST_P() 475 ASSERT_NO_FATAL_FAILURE(ReadbackHelper::fillBuffer(layer->mWidth, layer->mHeight, in TEST_P() 543 deviceLayer->mHeight); in TEST_P() 546 static_cast<int32_t>(deviceLayer->mHeight)}, in TEST_P() 549 static_cast<int32_t>(deviceLayer->mHeight)}); in TEST_P()
|
/hardware/interfaces/camera/device/3.4/default/include/ext_device_v3_4_impl/ |
D | ExternalCameraUtils.h | 135 const uint32_t mHeight; member
|
/hardware/qcom/camera/msm8998/QCamera2/HAL/ |
D | QCameraMem.h | 316 int mWidth, mHeight, mFormat, mStride, mScanline, mUsage; variable
|
D | QCameraMem.cpp | 1890 mWidth = mHeight = mStride = mScanline = mUsage = 0; in QCameraGrallocMemory() 1939 mHeight = height; in setWindowInfo() 2254 err = mWindow->set_buffers_geometry(mWindow, mWidth, mHeight, mFormat); in allocate() 2276 gralloc_usage, mWindow, mWidth, mHeight, mStride, in allocate()
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/ |
D | omx_swvdec.cpp | 2869 p_img->mHeight = p_params->nFrameHeight; in describe_color_format() 2872 scanlines = ALIGN(p_img->mHeight, DEFAULT_ALIGNMENT_SCANLINES_Y); in describe_color_format() 2908 p_img->mHeight = p_params->nFrameHeight; in describe_color_format() 2911 scanlines = ALIGN(p_img->mHeight, 1); in describe_color_format()
|