Lines Matching refs:s32

114 	s32 csc_coef00;
115 s32 csc_coef01;
116 s32 csc_coef02;
117 s32 csc_coef10;
118 s32 csc_coef11;
119 s32 csc_coef12;
120 s32 csc_coef20;
121 s32 csc_coef21;
122 s32 csc_coef22;
126 s32 csc_offset0;
127 s32 csc_offset1;
128 s32 csc_offset2;
132 s32 csc_in_dc0;
133 s32 csc_in_dc1;
134 s32 csc_in_dc2;
135 s32 csc_out_dc0;
136 s32 csc_out_dc1;
137 s32 csc_out_dc2;
541 static const s32 g_hue_sin_table[PQ_CSC_HUE_TABLE_NUM] = {
577 static const s32 g_hue_cos_table[PQ_CSC_HUE_TABLE_NUM] = {
1220 static inline s32 csc_simple_round(s32 x, s32 n) in csc_simple_round()
1222 s32 value = 0; in csc_simple_round()
1244 static struct rk_pq_csc_coef create_rgb_gain_matrix(s32 r_gain, s32 g_gain, s32 b_gain) in create_rgb_gain_matrix()
1263 static struct rk_pq_csc_coef create_contrast_matrix(s32 contrast) in create_contrast_matrix()
1282 static struct rk_pq_csc_coef create_hue_matrix(s32 hue) in create_hue_matrix()
1285 s32 hue_idx; in create_hue_matrix()
1286 s32 sin_hue; in create_hue_matrix()
1287 s32 cos_hue; in create_hue_matrix()
1308 static struct rk_pq_csc_coef create_saturation_matrix(s32 saturation) in create_saturation_matrix()
1344 s32 contrast, saturation, brightness; in csc_calc_adjust_output_coef()
1345 s32 r_gain, g_gain, b_gain; in csc_calc_adjust_output_coef()
1346 s32 r_offset, g_offset, b_offset; in csc_calc_adjust_output_coef()
1347 s32 dc_in_offset, dc_out_offset; in csc_calc_adjust_output_coef()
1354 r_offset = ((s32)csc_input_cfg->r_offset - PQ_CSC_BRIGHTNESS_OFFSET) / in csc_calc_adjust_output_coef()
1356 g_offset = ((s32)csc_input_cfg->g_offset - PQ_CSC_BRIGHTNESS_OFFSET) / in csc_calc_adjust_output_coef()
1358 b_offset = ((s32)csc_input_cfg->b_offset - PQ_CSC_BRIGHTNESS_OFFSET) / in csc_calc_adjust_output_coef()
1367 brightness = (s32)csc_input_cfg->brightness - PQ_CSC_BRIGHTNESS_OFFSET; in csc_calc_adjust_output_coef()