Home
last modified time | relevance | path

Searched refs:fixpoint (Results 1 – 3 of 3) sorted by relevance

/Linux-v4.19/drivers/gpu/drm/amd/display/dc/dcn10/
Ddcn10_cm_common.h103 bool fixpoint);
107 struct pwl_params *lut_params, bool fixpoint);
Ddcn10_cm_common.c132 bool fixpoint) in cm_helper_convert_to_custom_float() argument
171 if (fixpoint == true) in cm_helper_convert_to_custom_float()
185 if (hw_points_num == 0 || rgb_resulted == NULL || fixpoint == true) in cm_helper_convert_to_custom_float()
243 struct pwl_params *lut_params, bool fixpoint) in cm_helper_translate_curve_to_hw_format() argument
400 if (fixpoint == true) { in cm_helper_translate_curve_to_hw_format()
415 hw_points, fixpoint); in cm_helper_translate_curve_to_hw_format()
/Linux-v4.19/drivers/media/platform/
Dsh_veu.c662 u32 fixpoint; in sh_veu_calc_scale() local
675 u32 fixpoint = (4096 * size_in) / size_out; in sh_veu_calc_scale() local
676 *mant = fixpoint / 4096; in sh_veu_calc_scale()
677 *frac = (fixpoint - (*mant * 4096)) & ~0x07; in sh_veu_calc_scale()
694 fixpoint = (4096 * (size_in - 1)) / (size_out + 1); in sh_veu_calc_scale()
695 *mant = fixpoint / 4096; in sh_veu_calc_scale()
696 *frac = fixpoint - (*mant * 4096); in sh_veu_calc_scale()