Home | History | Annotate | Download | only in cl_kernel

Lines Matching refs:table

8  *   gamma_table: RGGB table
88 inline float2 delta_coff (float2 in, __local float *table)
91 out.x = table[(int)(fabs(in.x * 64.0f))];
92 out.y = table[(int)(fabs(in.y * 64.0f))];
97 inline float2 dot_denoise (float2 value, float2 in1, float2 in2, float2 in3, float2 in4, __local float *table, float coff0)
100 coff1 = delta_coff (in1 - value, table);
101 coff2 = delta_coff (in2 - value, table);
102 coff3 = delta_coff (in3 - value, table);
103 coff4 = delta_coff (in4 - value, table);
123 inline float2 dot_denoise_ee (float2 value, float2 in1, float2 in2, float2 in3, float2 in4, __local float *table, float coff0, float2 *egain, CLEeConfig ee_config)
125 float2 out = dot_denoise(value, in1, in2, in3, in4, table, coff0);
197 __write_only image2d_t out, uint out_height, int out_x, int out_y, __local float *table, CLEeConfig ee_config)
206 float gain_coff0 = table[0];
223 table, gain_coff0 * GUASS_DELTA_S_2, &egain[1], ee_config);
243 de = dot_denoise (value, Gb_w0.s01, Gb_w0.s12, Gb_w1.s01, Gb_w1.s12, table, gain_coff0 * GUASS_DELTA_S_1_5);
247 de = dot_denoise (value, Gr_x1.s12, Gr_x1.s23, Gr_x2.s01, Gr_x2.s12, table, gain_coff0 * GUASS_DELTA_S_1_5);
261 table, gain_coff0 * GUASS_DELTA_S_2, &egain[2], ee_config);
267 de = dot_denoise (value, R_y[0].s01, R_y[0].s12, R_y[2].s01, R_y[2].s12, table, gain_coff0 * GUASS_DELTA_S_2_5);
271 de = dot_denoise (value, R_y[1].s01, R_y[1].s12, R_y[2].s01, R_y[2].s12, table, gain_coff0 * GUASS_DELTA_S_1_5);
275 de = dot_denoise (value, R_y[1].s01, R_y[1].s23, R_y[2].s01, R_y[2].s23, table, gain_coff0 * GUASS_DELTA_S_2_5);
285 de = dot_denoise(value, Gr_x1.s12, Gr_x1.s23, Gb_w0.s12, Gb_w1.s12, table, gain_coff0 * GUASS_DELTA_S_1);
289 de = dot_denoise (value, Gr_x1.s12, Gr_x2.s01, Gb_w1.s01, Gb_w1.s12, table, gain_coff0 * GUASS_DELTA_S_1);
299 de = dot_denoise (value, B_z[0].s01, B_z[0].s23, B_z[1].s01, B_z[1].s23, table, gain_coff0 * GUASS_DELTA_S_2_5);
304 de = dot_denoise (value, B_z[0].s12, B_z[0].s23, B_z[1].s12, B_z[1].s23, table, gain_coff0 * GUASS_DELTA_S_1_5);
308 de = dot_denoise (value, B_z[0].s12, B_z[0].s23, B_z[2].s12, B_z[2].s23, table, gain_coff0 * GUASS_DELTA_S_2_5);
320 uint has_denoise, __local float *table, CLEeConfig ee_config)
325 out, output_height, out_x, out_y, table, ee_config);