/hardware/interfaces/camera/device/3.4/default/ |
D | ExternalCameraUtils.cpp | 291 for (const auto& limit : ret.fpsLimits) { in loadFromCfg() local 293 limit.size.width, limit.size.height, limit.fpsUpperBound); in loadFromCfg() 295 for (const auto& limit : ret.depthFpsLimits) { in loadFromCfg() local 296 ALOGI("%s: depthFpsLimitList: %dx%d@%f", __FUNCTION__, limit.size.width, limit.size.height, in loadFromCfg() 297 limit.fpsUpperBound); in loadFromCfg() 311 FpsLimitation limit; in updateFpsList() local 312 limit.size = {row->UnsignedAttribute("width", /*Default*/ 0), in updateFpsList() 314 limit.fpsUpperBound = row->DoubleAttribute("fpsBound", /*Default*/ 1000.0); in updateFpsList() 315 if (limit.size.width <= prevLimit.size.width || in updateFpsList() 316 limit.size.height <= prevLimit.size.height || in updateFpsList() [all …]
|
D | ExternalCameraDevice.cpp | 920 for (const auto& limit : fpsLimits) { in updateFpsBounds() local 922 if (format.width <= limit.size.width) { in updateFpsBounds() 923 fpsUpperBound = limit.fpsUpperBound; in updateFpsBounds() 927 if (format.height <= limit.size.height) { in updateFpsBounds() 928 fpsUpperBound = limit.fpsUpperBound; in updateFpsBounds()
|
/hardware/google/av/codec2/vndk/util/ |
D | C2InterfaceUtils.cpp | 136 C2SupportedRange<T> C2SupportedRange<T>::limitedTo(const C2SupportedRange<T> &limit) const { in limitedTo() 138 return C2SupportedRange(std::max(_mMin, limit._mMin), std::min(_mMax, limit._mMax), in limitedTo() 139 std::max(_mStep, limit._mStep)); in limitedTo() 169 C2SupportedFlags<float> C2SupportedFlags<float>::limitedTo(const C2SupportedFlags<float> &limit) co… in limitedTo() 212 C2SupportedFlags<T> C2SupportedFlags<T>::limitedTo(const C2SupportedFlags<T> &limit) const { in limitedTo() 214 T minMask = min() | limit.min(); in limitedTo() 216 if (limit.contains(minMask) && contains(minMask)) { in limitedTo() 219 …std::remove_if(values.begin(), values.end(), [&limit, minMask](const C2Value::Primitive &v) -> boo… in limitedTo() 221 return value == minMask || !limit.contains(value); }); in limitedTo() 265 C2SupportedValueSet<T> C2SupportedValueSet<T>::limitedTo(const C2SupportedValueSet<T> &limit) const… in limitedTo() [all …]
|
/hardware/interfaces/broadcastradio/common/vts/utils/include/broadcastradio-vts-utils/ |
D | pointer-utils.h | 42 auto limit = steady_clock::now() + timeout; in clearAndWait() local 44 if (steady_clock::now() + step > limit) { in clearAndWait()
|
/hardware/interfaces/tetheroffload/control/1.0/ |
D | IOffloadControl.hal | 98 * Instruct hardware to stop forwarding traffic and send a callback after limit bytes have been 101 * The limit must be applied to all traffic on the given upstream interface. This 103 * IPv4 and IPv6 traffic both count towards the same limit. IP headers are included in the 104 * byte count limit, but, link-layer headers are not. 108 * started. This cache is not expected, because the limit value would likely become stale over 111 * This limit must replace any previous limit. It may be interpreted as "tell me when 112 * <limit> bytes have been transferred (in either direction) on <upstream>, starting 115 * Once the limit is reached, the callback registered in initOffload must be called to indicate 121 * @param upstream Upstream interface name that limit must apply to 122 * @param limit Bytes limit that can occur before action must be taken [all …]
|
D | types.hal | 50 * in order to resume. This event is fired when the limit, applied in
|
/hardware/google/interfaces/media/c2/1.0/ |
D | IComponent.hal | 74 * - TIMED_OUT - The flush could not be completed within the time limit. 105 * - TIMED_OUT - The flush could not be completed within the time limit. 123 * limit. (unexpected) 149 * limit. (unexpected) 171 * limit. (unexpected) 189 * limit. (unexpected) 211 * - TIMED_OUT - The pool could not be destroyedwithin the time limit. 244 * - TIMED_OUT - The component could not be started within the time limit. 270 * - TIMED_OUT - The component could not be stopped within the time limit. 302 * - TIMED_OUT - The component could not be reset within the time limit. [all …]
|
/hardware/interfaces/tetheroffload/control/1.0/vts/functional/ |
D | VtsHalTetheroffloadControlV1_0TargetTest.cpp | 309 const uint64_t limit = 5000ULL; in TEST_F() local 310 const Return<void> ret = control->setDataLimit(upstream, limit, ASSERT_FALSE_CALLBACK); in TEST_F() 444 const uint64_t limit = 5000ULL; in TEST_F() local 445 const Return<void> ret = control->setDataLimit(upstream, limit, ASSERT_FALSE_CALLBACK); in TEST_F() 453 const uint64_t limit = 5000ULL; in TEST_F() local 454 const Return<void> ret = control->setDataLimit(upstream, limit, ASSERT_TRUE_CALLBACK); in TEST_F() 462 const uint64_t limit = 0ULL; in TEST_F() local 463 const Return<void> ret = control->setDataLimit(upstream, limit, ASSERT_TRUE_CALLBACK); in TEST_F()
|
/hardware/google/av/codec2/vndk/include/util/ |
D | C2InterfaceUtils.h | 237 C2SupportedRange<T> limitedTo(const C2SupportedRange<T> &limit) const; 406 C2SupportedFlags<T> limitedTo(const C2SupportedFlags<T> &limit) const; 536 C2SupportedValueSet<T> limitedTo(const C2SupportedValueSet<T> &limit) const; 543 C2SupportedValueSet<T> limitedTo(const C2SupportedRange<T> &limit) const; 550 C2SupportedValueSet<T> limitedTo(const C2SupportedFlags<T> &limit) const; 787 C2ParamFieldValuesBuilder<T> &limitTo(const C2SupportedValueSet<T> &limit); 792 C2ParamFieldValuesBuilder<T> &limitTo(const C2SupportedFlags<T> &limit); 797 C2ParamFieldValuesBuilder<T> &limitTo(const C2SupportedRange<T> &limit);
|
/hardware/qcom/sdm845/display/sdm/libs/core/drm/ |
D | hw_scale_drm.cpp | 145 det_enhance->limit = scale_data.detail_enhance.limit; in SetScalerV2()
|
/hardware/qcom/display/msm8909w_3100/sdm/libs/core/fb/ |
D | hw_scale.cpp | 216 mdp_det_enhance->limit = scale_data.detail_enhance.limit; in SetHWScaleData() 301 de->clip, de->limit, de->thr_quiet, de->thr_dieout); in DumpScaleData()
|
/hardware/qcom/display/msm8996/sdm/libs/core/fb/ |
D | hw_scale.cpp | 219 mdp_det_enhance->limit = scale_data.detail_enhance.limit; in SetHWScaleData() 304 de->clip, de->limit, de->thr_quiet, de->thr_dieout); in DumpScaleData()
|
/hardware/qcom/display/msm8909/sdm/libs/core/fb/ |
D | hw_scale.cpp | 216 mdp_det_enhance->limit = scale_data.detail_enhance.limit; in SetHWScaleData() 301 de->clip, de->limit, de->thr_quiet, de->thr_dieout); in DumpScaleData()
|
/hardware/qcom/display/msm8998/sdm/libs/core/fb/ |
D | hw_scale.cpp | 216 mdp_det_enhance->limit = scale_data.detail_enhance.limit; in SetHWScaleData() 301 de->clip, de->limit, de->thr_quiet, de->thr_dieout); in DumpScaleData()
|
/hardware/qcom/sdm845/display/sdm/libs/core/fb/ |
D | hw_scale.cpp | 216 mdp_det_enhance->limit = scale_data.detail_enhance.limit; in SetHWScaleData() 301 de->clip, de->limit, de->thr_quiet, de->thr_dieout); in DumpScaleData()
|
/hardware/interfaces/secure_element/1.0/ |
D | ISecureElement.hal | 71 * element has reached the maximum limit on the number of 95 * element has reached the maximum limit on the number of
|
/hardware/interfaces/gnss/1.0/ |
D | IGnssGeofenceCallback.hal | 24 * An example state diagram with confidence level: 95% and Unknown time limit 25 * set as 30 secs is shown below. (confidence level and Unknown time limit are 154 * geofence limit has been reached.
|
D | IGnssNiCallback.hal | 90 * Set to 0 for no timeout limit. Specified in seconds.
|
/hardware/qcom/msm8x09/kernel-headers/drm/ |
D | sde_drm.h | 78 uint16_t limit; member
|
/hardware/qcom/msm8x09/original-kernel-headers/drm/ |
D | sde_drm.h | 215 uint16_t limit; member
|
/hardware/interfaces/wifi/1.3/default/ |
D | wifi_chip.cpp | 1319 for (const auto& limit : combination.limits) { in expandIfaceCombinations() local 1320 for (uint32_t i = 0; i < limit.maxIfaces; i++) { in expandIfaceCombinations() 1321 num_expanded_combos *= limit.types.size(); in expandIfaceCombinations() 1336 for (const auto& limit : combination.limits) { in expandIfaceCombinations() local 1337 for (uint32_t i = 0; i < limit.maxIfaces; i++) { in expandIfaceCombinations() 1338 span /= limit.types.size(); in expandIfaceCombinations() 1341 limit.types[(k / span) % limit.types.size()]; in expandIfaceCombinations()
|
/hardware/qcom/sdm845/data/ipacfg-mgr/hal/src/ |
D | HAL.cpp | 461 uint64_t limit, in setDataLimit() argument 466 fl.addArg("limit", limit); in setDataLimit() 473 RET ipaReturn = mIPA->setQuota(upstream.c_str(), limit); in setDataLimit()
|
/hardware/qcom/data/ipacfg-mgr/msm8998/hal/src/ |
D | HAL.cpp | 459 uint64_t limit, in setDataLimit() argument 464 fl.addArg("limit", limit); in setDataLimit() 471 RET ipaReturn = mIPA->setQuota(upstream.c_str(), limit); in setDataLimit()
|
/hardware/google/av/media/codecs/avc/ |
D | C2SoftAvcEnc.cpp | 229 for (const LevelLimits &limit : kLimits) { in ProfileLevelSetter() local 230 if (mbs <= limit.mbs && mbsPerSec <= limit.mbsPerSec && in ProfileLevelSetter() 231 bitrate.v.value <= limit.bitrate) { in ProfileLevelSetter() 237 "adjusting to %x", me.v.level, limit.level); in ProfileLevelSetter() 238 me.set().level = limit.level; in ProfileLevelSetter() 243 if (me.v.level == limit.level) { in ProfileLevelSetter()
|
/hardware/qcom/display/msm8996/sdm/include/core/ |
D | display_interface.h | 165 uint16_t limit = 0; // DE limit value member
|