/device/board/unionman/unionpi_tiger/kernel/drivers/isp/drivers/v4l2_dev/app/v4l2_interface/ |
D | isp-v4l2-ctrl.c | 374 .min = 0, 385 .min = 0, 396 .min = 0, 407 .min = 0, 419 .min = 0, 431 .min = 0, 443 .min = 0, 455 .min = 0, 466 .min = 1, 477 .min = 0, [all …]
|
/device/soc/rockchip/rk3588/kernel/arch/arm64/boot/dts/rockchip/ |
D | rk3588s-rk806-dual.dtsi | 157 regulator-min-microvolt = <550000>; 169 regulator-min-microvolt = <550000>; 181 regulator-min-microvolt = <750000>; 194 regulator-min-microvolt = <550000>; 206 regulator-min-microvolt = <675000>; 218 regulator-min-microvolt = <675000>; 230 regulator-min-microvolt = <2000000>; 243 regulator-min-microvolt = <675000>; 264 regulator-min-microvolt = <1100000>; 277 regulator-min-microvolt = <1800000>; [all …]
|
D | rk3588-rk806-single.dtsi | 156 regulator-min-microvolt = <550000>; 168 regulator-min-microvolt = <550000>; 180 regulator-min-microvolt = <675000>; 193 regulator-min-microvolt = <550000>; 206 regulator-min-microvolt = <675000>; 228 regulator-min-microvolt = <2000000>; 240 regulator-min-microvolt = <3300000>; 261 regulator-min-microvolt = <1800000>; 273 regulator-min-microvolt = <1800000>; 284 regulator-min-microvolt = <1800000>; [all …]
|
D | rk3588-bearkey-bq3588c1-linux.dtsi | 47 regulator-min-microvolt = <3300000>; 60 regulator-min-microvolt = <1800000>; 70 regulator-min-microvolt = <750000>; 87 regulator-min-microvolt = <5000000>; 101 regulator-min-microvolt = <5000000>; 119 regulator-min-microvolt = <5000000>; 128 regulator-min-microvolt = <1100000>; 136 regulator-min-microvolt = <3300000>; 160 regulator-min-microvolt = <5000000>; 334 regulator-min-microvolt = <550000>; [all …]
|
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/profiles/gls/ |
D | gls_racp.c | 77 if (p_compared_date_time->min < p_base_date_time->min) { in gls_racp_user_time_compare() 79 } else if (p_compared_date_time->min > p_base_date_time->min) { in gls_racp_user_time_compare() 126 … p_racp_req->filter.val.seq_num.min = BUILD_U16(p_data[index], p_data[index + 1]); in gls_racp_req_decode() 132 … p_racp_req->filter.val.seq_num.min = BUILD_U16(p_data[index], p_data[index + 1]); in gls_racp_req_decode() 135 … if (p_racp_req->filter.val.seq_num.min > p_racp_req->filter.val.seq_num.max) { in gls_racp_req_decode() 151 prf_unpack_date_time(&p_data[index], &p_racp_req->filter.val.time.min); in gls_racp_req_decode() 157 … index += prf_unpack_date_time(&p_data[index], &p_racp_req->filter.val.time.min); in gls_racp_req_decode() 161 &p_racp_req->filter.val.time.min) != -1) { in gls_racp_req_decode()
|
D | gls_db.c | 124 if (p_filter->val.seq_num.min <= gls_res.meas_val.sequence_number) { in gls_db_gt_or_eq_record_num_get() 129 &p_filter->val.time.min)) { in gls_db_gt_or_eq_record_num_get() 155 if ((gls_res.meas_val.sequence_number >= p_filter->val.seq_num.min) && \ in gls_db_within_range_record_num_get() 160 … if ((-1 != gls_racp_user_time_compare(&gls_res.meas_val.base_time, &p_filter->val.time.min)) && \ in gls_db_within_range_record_num_get()
|
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/ledc/ |
D | ledc-sunxi.c | 139 u32 min = SUNXI_RESET_TIME_MIN_NS; in sunxi_set_reset_ns() local 142 if (led->reset_ns < min || led->reset_ns > max) { in sunxi_set_reset_ns() 144 min, max); in sunxi_set_reset_ns() 160 u32 min = SUNXI_T1H_MIN_NS; in sunxi_set_t1h_ns() local 163 if (led->t1h_ns < min || led->t1h_ns > max) { in sunxi_set_t1h_ns() 165 min, max); in sunxi_set_t1h_ns() 181 u32 min = SUNXI_T1L_MIN_NS; in sunxi_set_t1l_ns() local 184 if (led->t1l_ns < min || led->t1l_ns > max) { in sunxi_set_t1l_ns() 186 min, max); in sunxi_set_t1l_ns() 202 u32 min = SUNXI_T0H_MIN_NS; in sunxi_set_t0h_ns() local [all …]
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/adapt/ |
D | hi_math_adapt.h | 61 #define clip_min(x, min) (((x) >= (min)) ? (x) : (min)) argument 62 #define clip3(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) : (x))) argument 64 #define wrap_max(x, max, min) ((x) >= (max) ? (min) : (x)) argument 65 #define wrap_min(x, min, max) ((x) <= (min) ? (max) : (x)) argument 66 #define value_between(x, min, max) (((x) >= (min)) && ((x) <= (max))) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/ |
D | hi_math.h | 60 #define CLIP_MIN(x, min) (((x) >= (min)) ? (x) : (min)) argument 61 #define CLIP3(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) :(x))) argument 63 #define WRAP_MAX(x, max, min) ((x) >= (max) ? (min) : (x)) argument 64 #define WRAP_MIN(x, min, max) ((x) <= (min) ? (max) : (x)) argument 65 #define VALUE_BETWEEN(x, min, max) (((x) >= (min)) && ((x) <= (max))) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/ |
D | hi_math.h | 57 #define CLIP_MIN(x, min) (((x) >= (min)) ? (x) : (min)) argument 58 #define CLIP3(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) :(x))) argument 60 #define WRAP_MAX(x, max, min) ((x) >= (max) ? (min) : (x)) argument 61 #define WRAP_MIN(x, min, max) ((x) <= (min) ? (max) : (x)) argument 62 #define VALUE_BETWEEN(x, min, max) (((x) >= (min)) && ((x) <= (max))) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/adapt/ |
D | hi_math_adapt.h | 58 #define clip_min(x, min) (((x) >= (min)) ? (x) : (min)) argument 59 #define clip3(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) : (x))) argument 61 #define wrap_max(x, max, min) ((x) >= (max) ? (min) : (x)) argument 62 #define wrap_min(x, min, max) ((x) <= (min) ? (max) : (x)) argument 63 #define value_between(x, min, max) (((x) >= (min)) && ((x) <= (max))) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/adapt/ |
D | hi_math_adapt.h | 58 #define clip_min(x, min) (((x) >= (min)) ? (x) : (min)) argument 59 #define clip3(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) : (x))) argument 61 #define wrap_max(x, max, min) ((x) >= (max) ? (min) : (x)) argument 62 #define wrap_min(x, min, max) ((x) <= (min) ? (max) : (x)) argument 63 #define value_between(x, min, max) (((x) >= (min)) && ((x) <= (max))) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/ |
D | hi_math.h | 59 #define CLIP_MIN(x, min) (((x) >= (min)) ? (x) : (min)) argument 60 #define CLIP3(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) :(x))) argument 62 #define WRAP_MAX(x, max, min) ((x) >= (max) ? (min) : (x)) argument 63 #define WRAP_MIN(x, min, max) ((x) <= (min) ? (max) : (x)) argument 64 #define VALUE_BETWEEN(x, min, max) (((x) >= (min)) && ((x) <= (max))) argument
|
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/video/sunxi/disp2/disp/de/lowlevel_v3x/ |
D | de_dns.c | 230 RSIG_CEN = min(SIG3, RSIG_CEN); in de_dns_init_para() 419 RSIG_CEN = min(SIG3, RSIG_CEN); in dns_para_adapt() 424 SIG2 = max(0, min(255, SIG2 * 3 / 2)); in dns_para_adapt() 426 DIR_CEN = max(0, min(255, DIR_CEN - 32)); in dns_para_adapt() 432 SIG2 = max(0, min(255, SIG2 * 2 / 3)); in dns_para_adapt() 434 SIG2 = max(0, min(255, SIG2 * 3 / 4)); in dns_para_adapt() 438 DIR_CEN = max(0, min(255, DIR_CEN + 32)); in dns_para_adapt() 443 DIR_RSIG_GAIN = min(255, in dns_para_adapt() 447 SIG2 = max(15, min(30, SIG2)); in dns_para_adapt() 454 SIG2 = min(100, SIG2); in dns_para_adapt() [all …]
|
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/clk/ |
D | ccu_mult.c | 15 unsigned long mult, min, max; member 24 if (_mult < mult->min) in ccu_mult_find_best() 25 _mult = mult->min; in ccu_mult_find_best() 42 _cm.min = cm->mult.min; in ccu_mult_round_rate() 125 _cm.min = cm->mult.min; in ccu_mult_set_rate()
|
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/video/sunxi/disp2/disp/de/lowlevel_v33x/de330/ |
D | de_dns.c | 197 RSIG_CEN = min(SIG3, RSIG_CEN); in de_dns_init_para() 370 RSIG_CEN = min(SIG3, RSIG_CEN); in dns_para_adapt() 375 SIG2 = max(0, min(255, SIG2 * 3 / 2)); in dns_para_adapt() 377 DIR_CEN = max(0, min(255, DIR_CEN - 32)); in dns_para_adapt() 383 SIG2 = max(0, min(255, SIG2 * 2 / 3)); in dns_para_adapt() 385 SIG2 = max(0, min(255, SIG2 * 3 / 4)); in dns_para_adapt() 389 DIR_CEN = max(0, min(255, DIR_CEN + 32)); in dns_para_adapt() 394 DIR_RSIG_GAIN = min(255, in dns_para_adapt() 398 SIG2 = max(15, min(30, SIG2)); in dns_para_adapt() 405 SIG2 = min(100, SIG2); in dns_para_adapt() [all …]
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/hdmi/src/mkp/ |
D | drv_hdmi_proc.c | 514 index = min((hi_s32)app_attr->hdmi_action, HDMI_DEFAULT_ACTION_BUTT); in proc_app_attr_info() 529 index = min((hi_s32)app_attr->deep_color_mode, HDMI_DEEP_COLOR_48BIT + 1); in proc_app_attr_info() 534 index = min((hi_s32)app_attr->out_color_space, HDMI_COLORSPACE_BUTT); in proc_app_attr_info() 607 index = min((hi_s32)index, HDMI_TMDS_MODE_BUTT); in proc_sw_status() 609 index = min((hi_s32)hdmi_dev->tmds_mode, HDMI_TMDS_MODE_BUTT); in proc_sw_status() 641 index = min((hi_s32)hdr_info->hdr_debug_mode, HDMI_HDR_DEBUG_MODE_BUTT); in proc_hdr_status() 672 index = min((hi_s32)frl->state_mach_info.mach_mode, HDMI_FRL_MACH_MODE_BUTT); in proc_frl_status() 674 index = min((hi_s32)frl->state_mach_info.sw_train_mode, FRL_SW_TRAIN_BUTT); in proc_frl_status() 677 index = min((hi_s32)frl->rate_select, HDMI_FRL_RATE_SELECT_BUTT); in proc_frl_status() 679 index = min((hi_s32)frl->strategy_mode, HDMI_FRL_STRATEGY_MODE_BUTT); in proc_frl_status() [all …]
|
/device/soc/beken/bk7235/liteos_m/bk_sdk_armino/components/bk_common/include/ |
D | bk_fifo.h | 126 len = min(len, fifo->size - fifo->in + fifo->out); in kfifo_put() 129 l = min(len, fifo->size - (fifo->in & (fifo->size - 1))); in kfifo_put() 160 len = min(len, fifo->in - fifo->out); in kfifo_get() 163 l = min(len, fifo->size - (fifo->out & (fifo->size - 1))); in kfifo_get() 198 l = min(len, size - off); in kfifo_copy_out()
|
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/vin/modules/actuator/ |
D | actuator.c | 77 unsigned short min, max, steps; in sunxi_actuator_ioctl() local 81 min = pt[0]; in sunxi_actuator_ioctl() 84 if ((min < max - act_ctrl->total_steps) in sunxi_actuator_ioctl() 86 act_ctrl->active_min = min; in sunxi_actuator_ioctl()
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/csf/ |
D | mali_kbase_csf_firmware_cfg.c | 59 u32 min; member 70 static FW_CFG_ATTR(min, S_IRUGO); 96 val = config->min; in show_fw_cfg() 138 if ((val < config->min) || (val > config->max)) in store_fw_cfg() 296 config->min = entry[1]; in kbase_csf_firmware_cfg_option_entry_parse() 306 config->min, config->max); in kbase_csf_firmware_cfg_option_entry_parse()
|
/device/soc/esp/esp32/components/bt/host/bluedroid/stack/btm/ |
D | btm_pm.c | 214 …de->mode & BTM_PM_MD_FORCE) && (p_mode->max >= p_cb->interval) && (p_mode->min <= p_cb->interval))… in BTM_SetPowerMode() 216 …de: mode:0x%x interval %d max:%d, min:%d", p_mode->mode, p_cb->interval, p_mode->max, p_mode->min); in BTM_SetPowerMode() 467 p_res->min = (p_md1->min > p_md2->min) ? (p_md1->min) : (p_md2->min); in btm_pm_compare_modes() 470 if ( p_res->max < p_res->min) { in btm_pm_compare_modes() 570 ((md_res.max >= p_cb->interval) && (md_res.min <= p_cb->interval)) ) { in btm_pm_snd_md_req() 625 md_res.max, md_res.min)) { in btm_pm_snd_md_req() 632 md_res.max, md_res.min, md_res.attempt, in btm_pm_snd_md_req() 640 md_res.max, md_res.min)) { in btm_pm_snd_md_req()
|
/device/soc/rockchip/common/vendor/drivers/rockchip/ |
D | rockchip_ipa.c | 24 u32 min = data->lkg_range[0], max = data->lkg_range[1]; in calculate_static_coefficient() local 32 lkg = (min + max) / 0x02; in calculate_static_coefficient() 39 if (lkg < min) { in calculate_static_coefficient() 40 lkg = min; in calculate_static_coefficient()
|
/device/board/isoftstone/yangfan/kernel/src/driv/soc/ |
D | rockchip_ipa.c | 24 u32 min = data->lkg_range[0], max = data->lkg_range[1]; in calculate_static_coefficient() local 32 lkg = (min + max) / 2; in calculate_static_coefficient() 38 if (lkg < min) in calculate_static_coefficient() 39 lkg = min; in calculate_static_coefficient()
|
/device/soc/rockchip/rk3588/kernel/drivers/soc/rockchip/ |
D | rockchip_ipa.c | 24 u32 min = data->lkg_range[0], max = data->lkg_range[1]; in calculate_static_coefficient() local 32 lkg = (min + max) / 2; in calculate_static_coefficient() 38 if (lkg < min) in calculate_static_coefficient() 39 lkg = min; in calculate_static_coefficient()
|
/device/soc/rockchip/common/sdk_linux/drivers/cpufreq/ |
D | cpufreq_userspace.c | 105 …t event for cpu %u: %u - %u kHz, currently %u kHz, last set to %u kHz\n", policy->cpu, policy->min, in cpufreq_userspace_policy_limits() 110 } else if (policy->min > *setspeed) { in cpufreq_userspace_policy_limits() 111 __cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L); in cpufreq_userspace_policy_limits()
|