/hardware/intel/common/utils/media_resource_manager/arbitrator/ |
D | MediaResourceArbitrator.cpp | 73 /* in */ ResolutionType resolution, in AddResource() argument 89 resource.resolution = resolution; in AddResource() 93 codecType, isEncoder, isSecured, resolution, frameRate); in AddResource() 97 if (resolution > mLivingEncodersTable.maxResolution) { in AddResource() 98 mLivingEncodersTable.maxResolution = resolution; in AddResource() 105 if (resolution > mLivingDecodersTable.maxResolution) { in AddResource() 106 mLivingDecodersTable.maxResolution = resolution; in AddResource() 132 ResolutionType resolution, in RemoveResource() argument 145 (livingCodec.resolution == resolution) && in RemoveResource() 156 (livingCodec.resolution == resolution) && in RemoveResource() [all …]
|
D | MediaResourceArbitrator.h | 71 ResolutionType resolution; member 124 /* in */ ResolutionType resolution, 131 ResolutionType resolution,
|
/hardware/intel/common/utils/media_resource_manager/omx_adaptor/ |
D | OMX_adaptor.cpp | 164 ResolutionType resolution = Resolution_CIF; in MRM_OMX_SetParameter() local 168 resolution = Resolution_480; in MRM_OMX_SetParameter() 170 resolution = Resolution_720; in MRM_OMX_SetParameter() 172 resolution = Resolution_1080; in MRM_OMX_SetParameter() 174 resolution = Resolution_2K; in MRM_OMX_SetParameter() 176 resolution = Resolution_4K; in MRM_OMX_SetParameter() 180 codecInfo.resolution = resolution; in MRM_OMX_SetParameter() 201 codecInfo.resolution, in MRM_OMX_SetParameter() 251 codecInfo.resolution, in MRM_OMX_RemoveComponent()
|
/hardware/invensense/6515/libsensors_iio/ |
D | CompassSensor.IIO.9150.cpp | 299 list->resolution = COMPASS_MPU9150_RESOLUTION; in fillList() 309 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList() 319 list->resolution = COMPASS_AKM8963_RESOLUTION; in fillList() 329 list->resolution = COMPASS_AKM9911_RESOLUTION; in fillList() 339 list->resolution = COMPASS_AKM9912_RESOLUTION; in fillList() 348 list->resolution = COMPASS_MPU9350_RESOLUTION; in fillList() 355 list->resolution = COMPASS_YAS53x_RESOLUTION; in fillList() 362 list->resolution = COMPASS_AMI306_RESOLUTION; in fillList() 372 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
|
D | CompassSensor.AKM.cpp | 159 list->resolution = COMPASS_AKM8963_RESOLUTION; in fillList() 166 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList() 176 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
|
D | CompassSensor.IIO.primary.cpp | 409 list->resolution = COMPASS_MPU9150_RESOLUTION; in fillList() 420 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList() 431 list->resolution = COMPASS_AKM8963_RESOLUTION; in fillList() 442 list->resolution = COMPASS_AKM9911_RESOLUTION; in fillList() 453 list->resolution = COMPASS_AKM9912_RESOLUTION; in fillList() 461 list->resolution = COMPASS_AMI306_RESOLUTION; in fillList() 471 list->resolution = COMPASS_YAS53x_RESOLUTION; in fillList() 483 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
|
D | PressureSensor.IIO.secondary.cpp | 163 list->resolution = PRESSURE_BMP280_RESOLUTION; in fillList() 174 list->resolution = PRESSURE_BMP280_RESOLUTION; in fillList()
|
/hardware/intel/common/utils/media_resource_manager/include/ |
D | MediaResourceArbitrator.h | 71 ResolutionType resolution; member 124 /* in */ ResolutionType resolution, 131 ResolutionType resolution,
|
/hardware/invensense/65xx/libsensors_iio/ |
D | CompassSensor.AKM.cpp | 159 list->resolution = COMPASS_AKM8963_RESOLUTION; in fillList() 166 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList() 176 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
|
D | CompassSensor.IIO.9150.cpp | 297 list->resolution = COMPASS_MPU9150_RESOLUTION; in fillList() 307 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList() 316 list->resolution = COMPASS_MPU9350_RESOLUTION; in fillList() 323 list->resolution = COMPASS_YAS53x_RESOLUTION; in fillList() 330 list->resolution = COMPASS_AMI306_RESOLUTION; in fillList() 340 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
|
D | CompassSensor.IIO.primary.cpp | 409 list->resolution = COMPASS_MPU9150_RESOLUTION; in fillList() 419 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList() 427 list->resolution = COMPASS_AMI306_RESOLUTION; in fillList() 437 list->resolution = COMPASS_YAS53x_RESOLUTION; in fillList() 449 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
|
D | PressureSensor.IIO.secondary.cpp | 164 list->resolution = PRESSURE_BMP280_RESOLUTION; in fillList() 175 list->resolution = PRESSURE_BMP280_RESOLUTION; in fillList()
|
/hardware/intel/common/libmix/videoencoder/ |
D | VideoEncoderBase.cpp | 135 if (mComParams.resolution.width > 2048 || mComParams.resolution.height > 2048){ in start() 137 mComParams.resolution.width, mComParams.resolution.height); in start() 226 stride_aligned = (mComParams.resolution.width + 15) & ~15; in start() 227 height_aligned = (mComParams.resolution.height + 15) & ~15; in start() 232 stride_aligned = mComParams.resolution.width; in start() 233 height_aligned = mComParams.resolution.height; in start() 238 … stride_aligned = (mComParams.resolution.width + 63) & ~63; //on Merr, stride must be 64 aligned. in start() 239 height_aligned = (mComParams.resolution.height + 31) & ~31; in start() 284 mComParams.resolution.width, in start() 285 mComParams.resolution.height, in start() [all …]
|
D | VideoEncoderMP4.cpp | 137 mp4SequenceParams.video_object_layer_width= mComParams.resolution.width; in renderSequenceParams() 138 mp4SequenceParams.video_object_layer_height= mComParams.resolution.height; in renderSequenceParams() 194 mpeg4_pic_param.picture_width = mComParams.resolution.width; in renderPictureParams() 195 mpeg4_pic_param.picture_height = mComParams.resolution.height; in renderPictureParams() 234 sliceHeight = mComParams.resolution.height; in renderSliceParams()
|
D | VideoEncoderH263.cpp | 106 h263PictureParams.picture_width = mComParams.resolution.width; in renderPictureParams() 107 h263PictureParams.picture_height = mComParams.resolution.height; in renderPictureParams() 142 sliceHeight = mComParams.resolution.height; in renderSliceParams()
|
D | VideoEncoderAVC.cpp | 986 avcSeqParams.picture_width_in_mbs = (mComParams.resolution.width + 15) / 16; in renderSequenceParams() 987 avcSeqParams.picture_height_in_mbs = (mComParams.resolution.height + 15) / 16; in renderSequenceParams() 1023 if (mComParams.resolution.width & 0xf) { in renderSequenceParams() 1025 uint32_t AWidth = (mComParams.resolution.width + 0xf) & (~0xf); in renderSequenceParams() 1026 avcSeqParams.frame_crop_right_offset = ( AWidth - mComParams.resolution.width ) / 2; in renderSequenceParams() 1029 if (mComParams.resolution.height & 0xf) { in renderSequenceParams() 1031 uint32_t AHeight = (mComParams.resolution.height + 0xf) & (~0xf); in renderSequenceParams() 1032 avcSeqParams.frame_crop_bottom_offset = ( AHeight - mComParams.resolution.height ) / 2; in renderSequenceParams() 1273 maxSliceNum = (mComParams.resolution.height + 15) / 16; in renderSliceParams() 1324 …currentSlice->macroblock_address = startRowInMB * ((mComParams.resolution.width + 0xf) & ~0xf) / 1… in renderSliceParams() [all …]
|
D | PVSoftMPEG4Encoder.cpp | 134 mComParams.resolution.width = 0; in setDefaultParams() 135 mComParams.resolution.height = 0; in setDefaultParams() 310 mVideoWidth = mComParams.resolution.width; in setParameters() 311 mVideoHeight = mComParams.resolution.height; in setParameters()
|
/hardware/libhardware/modules/sensors/dynamic_sensor/ |
D | HidRawSensor.cpp | 163 double resolution = 1; in HidRawSensor() local 192 resolution = std::min(digest.a, resolution); in HidRawSensor() 208 mFeatureInfo.resolution = resolution; in HidRawSensor() 287 mFeatureInfo.resolution = quat.a; in processQuaternionUsage() 350 mFeatureInfo.resolution = reportX.a * defaultScaling; in processTriAxisUsage() 429 featureValue->resolution = FLT_MAX; in initFeatureValueFromHidDeviceInfo() 514 || mFeatureInfo.resolution <= 0) { in validateFeatureValueAndBuildSensor() 568 mFeatureInfo.resolution, // resolution in validateFeatureValueAndBuildSensor() 993 << " resolution: " << mFeatureInfo.resolution << LOG_ENDL in dump()
|
/hardware/libhardware/modules/input/evdev/ |
D | InputHost.cpp | 40 int32_t min, int32_t max, float resolution) { in declareUsage() argument 42 id, usage, min, max, resolution); in declareUsage()
|
/hardware/interfaces/sensors/1.0/default/ |
D | convert.cpp | 34 dst->resolution = src.resolution; in convertFromSensor() 54 dst->resolution = src.resolution; in convertToSensor()
|
/hardware/qcom/msm8x26/original-kernel-headers/sound/ |
D | asound.h | 652 unsigned long resolution; /* average period resolution in ns */ member 668 unsigned long resolution; /* current period resolution in ns */ member 685 unsigned long resolution; /* average period resolution in ns */ member 704 unsigned int resolution; /* current period resolution in ns */ member 728 unsigned int resolution; member
|
/hardware/qcom/msm8x26/kernel-headers/sound/ |
D | asound.h | 646 unsigned long resolution; member 664 unsigned long resolution; member 682 unsigned long resolution; member 702 unsigned int resolution; member 729 unsigned int resolution; member
|
/hardware/qcom/msm8996/original-kernel-headers/sound/ |
D | asound.h | 662 unsigned long resolution; /* average period resolution in ns */ member 678 unsigned long resolution; /* current period resolution in ns */ member 695 unsigned long resolution; /* average period resolution in ns */ member 714 unsigned int resolution; /* current period resolution in ns */ member 738 unsigned int resolution; member
|
/hardware/qcom/msm8x09/original-kernel-headers/sound/ |
D | asound.h | 662 unsigned long resolution; /* average period resolution in ns */ member 678 unsigned long resolution; /* current period resolution in ns */ member 695 unsigned long resolution; /* average period resolution in ns */ member 714 unsigned int resolution; /* current period resolution in ns */ member 738 unsigned int resolution; member
|
/hardware/qcom/msm8994/original-kernel-headers/sound/ |
D | asound.h | 653 unsigned long resolution; /* average period resolution in ns */ member 669 unsigned long resolution; /* current period resolution in ns */ member 686 unsigned long resolution; /* average period resolution in ns */ member 705 unsigned int resolution; /* current period resolution in ns */ member 729 unsigned int resolution; member
|