/hardware/interfaces/configstore/utils/include/configstore/ |
D | Utils.h | 65 template<typename V, typename I, android::hardware::Return<void> (I::* func) 66 (std::function<void(const V&)>)> 67 decltype(V::value) get(const decltype(V::value) &defValue) { in decltype() 70 auto getHelper = []()->V { in decltype() 71 V ret; in decltype() 78 auto status = (*configs.*func)([&ret](V v) { in decltype() 93 static V cachedValue = getHelper(); in decltype()
|
/hardware/google/av/codec2/include/ |
D | C2.h | 443 template<typename T, typename U, typename... V> 444 struct c2_types<T, U, V...> { 446 typedef typename c2_types<typename c2_types<T, U>::wide_type, V...>::wide_type wide_type; 448 typedef typename c2_types<typename c2_types<T, U>::narrow_type, V...>::narrow_type narrow_type; 450 typedef typename c2_types<typename c2_types<T, U>::min_type, V...>::min_type min_type; 473 template<typename T, typename U, typename... V> 474 constexpr typename c2_types<T, U, V...>::wide_type c2_max(const T a, const U b, const V ... c) { 475 typedef typename c2_types<T, U, V...>::wide_type wide_type; 502 template<typename T, typename U, typename... V> 503 constexpr typename c2_types<T, U, V...>::min_type c2_min(const T a, const U b, const V ... c) { [all …]
|
D | C2ParamDef.h | 126 template<typename T, typename V=void> 128 typedef V type;
|
/hardware/interfaces/automotive/evs/1.0/vts/functional/ |
D | FormatConvert.cpp | 46 float V = Vin - 128.0f; in yuvToRgbx() local 48 float Rf = Y + 1.140f*V; in yuvToRgbx() 49 float Gf = Y - 0.395f*U - 0.581f*V; in yuvToRgbx() 144 uint8_t V = (srcPixel >> 24) & 0xFF; in copyYUYVtoRGB32() local 147 *(dst+0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32() 148 *(dst+1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
|
/hardware/qcom/gps/msm8909/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/ |
D | debug.h | 50 #define V PRINT macro 52 #define V(x...) do { } while(0) macro
|
/hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/ |
D | debug.h | 50 #define V PRINT macro 52 #define V(x...) do { } while(0) macro
|
/hardware/qcom/gps/msm8996/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/ |
D | debug.h | 50 #define V PRINT macro 52 #define V(x...) do { } while(0) macro
|
/hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/ |
D | debug.h | 50 #define V PRINT macro 52 #define V(x...) do { } while(0) macro
|
/hardware/qcom/gps/loc_api/libloc_api-rpc/inc/ |
D | debug.h | 38 #define V PRINT macro 40 #define V(x...) do { } while(0) macro
|
/hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/inc/ |
D | debug.h | 38 #define V PRINT macro 40 #define V(x...) do { } while(0) macro
|
/hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/ |
D | debug.h | 50 #define V PRINT macro 52 #define V(x...) do { } while(0) macro
|
/hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc/inc/ |
D | debug.h | 38 #define V PRINT macro 40 #define V(x...) do { } while(0) macro
|
/hardware/google/av/media/sfplugin/tests/ |
D | MediaCodec_sanity_test.cpp | 365 EXPECT_EQ(img->mPlane[img->V].mHorizSubsampling, 2u); in TEST_P() 366 EXPECT_EQ(img->mPlane[img->V].mVertSubsampling, 2u); in TEST_P() 380 EXPECT_EQ(img->mPlane[img->V].mOffset, (uint32_t)(stride * vstride * 5 / 4)); in TEST_P() 381 EXPECT_EQ(img->mPlane[img->V].mColInc, 1); in TEST_P() 382 EXPECT_EQ(img->mPlane[img->V].mRowInc, stride / 2); in TEST_P() 398 EXPECT_EQ(img->mPlane[img->V].mOffset, (uint32_t)(stride * vstride + 1)); in TEST_P() 399 EXPECT_EQ(img->mPlane[img->V].mColInc, 2); in TEST_P() 400 EXPECT_EQ(img->mPlane[img->V].mRowInc, stride); in TEST_P() 416 img->mPlane[img->V].mOffset + 119 * img->mPlane[img->V].mRowInc in TEST_P() 417 + 159 * img->mPlane[img->V].mColInc + 1 })); in TEST_P()
|
/hardware/google/av/media/sfplugin/ |
D | Codec2Buffer.cpp | 315 mediaImage->mPlane[mediaImage->V].mOffset = mStride * mVStride * 5 / 4; in GraphicView2MediaImageConverter() 316 mediaImage->mPlane[mediaImage->V].mColInc = 1; in GraphicView2MediaImageConverter() 317 mediaImage->mPlane[mediaImage->V].mRowInc = mStride / 2; in GraphicView2MediaImageConverter() 318 mediaImage->mPlane[mediaImage->V].mHorizSubsampling = 2; in GraphicView2MediaImageConverter() 319 mediaImage->mPlane[mediaImage->V].mVertSubsampling = 2; in GraphicView2MediaImageConverter() 336 mediaImage->mPlane[mediaImage->V].mOffset = mStride * mVStride + 1; in GraphicView2MediaImageConverter() 337 mediaImage->mPlane[mediaImage->V].mColInc = 2; in GraphicView2MediaImageConverter() 338 mediaImage->mPlane[mediaImage->V].mRowInc = mStride; in GraphicView2MediaImageConverter() 339 mediaImage->mPlane[mediaImage->V].mHorizSubsampling = 2; in GraphicView2MediaImageConverter() 340 mediaImage->mPlane[mediaImage->V].mVertSubsampling = 2; in GraphicView2MediaImageConverter()
|
/hardware/google/av/media/sfplugin/utils/ |
D | Codec2BufferUtils.cpp | 245 unsigned V = in ConvertRGBToPlanarYUV() local 249 dstV[x >> 1] = V; in ConvertRGBToPlanarYUV()
|
/hardware/interfaces/tv/cec/1.0/ |
D | IHdmiCec.hal | 162 * must watch for +5V power signal to determine the status.
|
/hardware/interfaces/media/omx/1.0/vts/functional/video/ |
D | VtsHalMediaOmxV1_0TargetVideoDecTest.cpp | 648 img.mPlane[img.V].mHorizSubsampling == 2 && in isColorFormatFlexibleYUV() 649 img.mPlane[img.V].mVertSubsampling == 2) { in isColorFormatFlexibleYUV() 667 img.mPlane[img.V].mHorizSubsampling == 2 && in isColorFormatFlexibleYUV() 668 img.mPlane[img.V].mVertSubsampling == 2) { in isColorFormatFlexibleYUV()
|
/hardware/intel/common/libva/test/encode/ |
D | avcenc.c | 405 const int V = surface_image.format.fourcc == VA_FOURCC_I420 ? 2 : 1; in upload_yuv_to_surface() local 408 v_dst = surface_p + surface_image.offsets[V]; in upload_yuv_to_surface() 414 v_dst += surface_image.pitches[V]; in upload_yuv_to_surface()
|
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/ |
D | omx_swvdec.cpp | 3204 p_img->mPlane[MediaImage::V].mOffset = stride * scanlines + 1; in describe_color_format() 3205 p_img->mPlane[MediaImage::V].mColInc = 2; in describe_color_format() 3206 p_img->mPlane[MediaImage::V].mRowInc = stride; in describe_color_format() 3207 p_img->mPlane[MediaImage::V].mHorizSubsampling = 2; in describe_color_format() 3208 p_img->mPlane[MediaImage::V].mVertSubsampling = 2; in describe_color_format()
|
D | omx_vdec_v4l2.cpp | 13477 img->mPlane[MediaImage::V].mOffset = planeWidth * planeHeight + 1; in describeColorFormat() 13478 img->mPlane[MediaImage::V].mColInc = 2; //interleaved UV in describeColorFormat() 13479 img->mPlane[MediaImage::V].mRowInc = in describeColorFormat() 13481 img->mPlane[MediaImage::V].mHorizSubsampling = 2; in describeColorFormat() 13482 img->mPlane[MediaImage::V].mVertSubsampling = 2; in describeColorFormat()
|
/hardware/interfaces/graphics/common/1.1/ |
D | types.hal | 193 * Inverse Gamma Correction (IGC): V represents normalized (with [0 to 1]
|
/hardware/qcom/msm8998/json-c/ |
D | ChangeLog | 110 Spotted by Vikram Raj V, vsagar at attinteractive dot com
|
/hardware/interfaces/audio/common/4.0/ |
D | types.hal | 615 HW_AV_SYNC = 0x40, // output uses a hardware A/V sync 646 HW_AV_SYNC = 0x40, // input connected to an output that uses a hardware A/V sync
|
/hardware/intel/common/libmix/mix_common/ |
D | INSTALL | 255 `-V'
|
/hardware/interfaces/audio/common/2.0/ |
D | types.hal | 663 HW_AV_SYNC = 0x40, // output uses a hardware A/V sync
|