Home
last modified time | relevance | path

Searched refs:profile_info (Results 1 – 25 of 590) sorted by relevance

12345678910>>...24

/dports/graphics/darktable38/darktable-3.8.0/src/common/
H A Diop_profile.c627 if(profile_info->lut_in[i]) dt_free_align(profile_info->lut_in[i]); in dt_ioppr_cleanup_profile_info()
707profile_info->nonlinearlut = _init_unbounded_coeffs(profile_info->lut_in[0], profile_info->lut_in[… in dt_ioppr_generate_profile_info()
708profile_info->unbounded_coeffs_in[0], profile_info->unbounded_coeffs_in[1], profile_info->unbounde… in dt_ioppr_generate_profile_info()
709 …_init_unbounded_coeffs(profile_info->lut_out[0], profile_info->lut_out[1], profile_info->lut_out[2… in dt_ioppr_generate_profile_info()
710profile_info->unbounded_coeffs_out[0], profile_info->unbounded_coeffs_out[1], profile_info->unboun… in dt_ioppr_generate_profile_info()
713 …if(!isnan(profile_info->matrix_in[0][0]) && !isnan(profile_info->matrix_out[0][0]) && profile_info in dt_ioppr_generate_profile_info()
716profile_info->grey = dt_ioppr_get_rgb_matrix_luminance(rgb, profile_info->matrix_in, profile_info-… in dt_ioppr_generate_profile_info()
818 …if(profile_info == NULL || isnan(profile_info->matrix_in[0][0]) || isnan(profile_info->matrix_out[… in dt_ioppr_set_pipe_work_profile_info()
853 mat3SSEinv(profile_info->matrix_out, profile_info->matrix_in); in dt_ioppr_set_pipe_input_profile_info()
871 …if(profile_info == NULL || isnan(profile_info->matrix_in[0][0]) || isnan(profile_info->matrix_out[… in dt_ioppr_set_pipe_output_profile_info()
[all …]
H A Diop_profile.h58 void dt_ioppr_init_profile_info(dt_iop_order_iccprofile_info_t *profile_info, const int lutsize);
60 void dt_ioppr_cleanup_profile_info(dt_iop_order_iccprofile_info_t *profile_info);
146 const dt_iop_order_iccprofile_info_t *const profile_info);
184 cl_float *dt_ioppr_get_trc_cl(const dt_iop_order_iccprofile_info_t *const profile_info);
187 cl_int dt_ioppr_build_iccprofile_params_cl(const dt_iop_order_iccprofile_info_t *const profile_info,
200 … const dt_iop_order_iccprofile_info_t *const profile_info);
367 return profile_info->grey; in dt_ioppr_get_profile_info_middle_grey()
378 dt_ioppr_rgb_matrix_to_lab(rgb, lab, profile_info->matrix_in_transposed, profile_info->lut_in, in dt_ioppr_compensate_middle_grey()
379profile_info->unbounded_coeffs_in, profile_info->lutsize, profile_info->nonlinearlut); in dt_ioppr_compensate_middle_grey()
392 dt_ioppr_lab_to_rgb_matrix(lab, rgb, profile_info->matrix_out_transposed, profile_info->lut_out, in dt_ioppr_uncompensate_middle_grey()
[all …]
H A Dhistogram.c95 const dt_iop_order_iccprofile_info_t *const profile_info) in histogram_helper_cs_rgb_helper_process_pixel_float_compensated() argument
97 const dt_aligned_pixel_t rgb = { dt_ioppr_compensate_middle_grey(pixel[0], profile_info), in histogram_helper_cs_rgb_helper_process_pixel_float_compensated()
98 dt_ioppr_compensate_middle_grey(pixel[1], profile_info), in histogram_helper_cs_rgb_helper_process_pixel_float_compensated()
135 const dt_iop_order_iccprofile_info_t *const profile_info) in histogram_helper_cs_rgb_helper_process_pixel_m128_compensated() argument
137 const __m128 rgb = { dt_ioppr_compensate_middle_grey(pixel[0], profile_info), in histogram_helper_cs_rgb_helper_process_pixel_m128_compensated()
138 dt_ioppr_compensate_middle_grey(pixel[1], profile_info), in histogram_helper_cs_rgb_helper_process_pixel_m128_compensated()
139 dt_ioppr_compensate_middle_grey(pixel[2], profile_info), 1.f }; in histogram_helper_cs_rgb_helper_process_pixel_m128_compensated()
311 const dt_iop_order_iccprofile_info_t *const profile_info) in dt_histogram_worker() argument
325 dt_omp_firstprivate(histogram_params, pixel, Worker, profile_info, bins_total, roi) \ in dt_histogram_worker()
332 Worker(histogram_params, pixel, thread_hist, j, profile_info); in dt_histogram_worker()
[all …]
/dports/graphics/darktable/darktable-3.6.1/src/common/
H A Diop_profile.c566 profile_info->lut_in[i] = dt_alloc_sse_ps(profile_info->lutsize); in dt_ioppr_init_profile_info()
669profile_info->nonlinearlut = _init_unbounded_coeffs(profile_info->lut_in[0], profile_info->lut_in[… in dt_ioppr_generate_profile_info()
670profile_info->unbounded_coeffs_in[0], profile_info->unbounded_coeffs_in[1], profile_info->unbounde… in dt_ioppr_generate_profile_info()
671 …_init_unbounded_coeffs(profile_info->lut_out[0], profile_info->lut_out[1], profile_info->lut_out[2… in dt_ioppr_generate_profile_info()
672profile_info->unbounded_coeffs_out[0], profile_info->unbounded_coeffs_out[1], profile_info->unboun… in dt_ioppr_generate_profile_info()
675 …if(!isnan(profile_info->matrix_in[0]) && !isnan(profile_info->matrix_out[0]) && profile_info->nonl… in dt_ioppr_generate_profile_info()
678profile_info->grey = dt_ioppr_get_rgb_matrix_luminance(rgb, profile_info->matrix_in, profile_info-… in dt_ioppr_generate_profile_info()
780 …if(profile_info == NULL || isnan(profile_info->matrix_in[0]) || isnan(profile_info->matrix_out[0])) in dt_ioppr_set_pipe_work_profile_info()
815 mat3inv_float(profile_info->matrix_out, profile_info->matrix_in); in dt_ioppr_set_pipe_input_profile_info()
831 …if(profile_info == NULL || isnan(profile_info->matrix_in[0]) || isnan(profile_info->matrix_out[0])) in dt_ioppr_set_pipe_output_profile_info()
[all …]
H A Diop_profile.h61 void dt_ioppr_init_profile_info(dt_iop_order_iccprofile_info_t *profile_info, const int lutsize);
63 void dt_ioppr_cleanup_profile_info(dt_iop_order_iccprofile_info_t *profile_info);
149 const dt_iop_order_iccprofile_info_t *const profile_info);
187 cl_float *dt_ioppr_get_trc_cl(const dt_iop_order_iccprofile_info_t *const profile_info);
190 cl_int dt_ioppr_build_iccprofile_params_cl(const dt_iop_order_iccprofile_info_t *const profile_info,
203 … const dt_iop_order_iccprofile_info_t *const profile_info);
401 …oat dt_ioppr_get_profile_info_middle_grey(const dt_iop_order_iccprofile_info_t *const profile_info) in dt_ioppr_get_profile_info_middle_grey() argument
403 return profile_info->grey; in dt_ioppr_get_profile_info_middle_grey()
409 …ppr_compensate_middle_grey(const float x, const dt_iop_order_iccprofile_info_t *const profile_info) in dt_ioppr_compensate_middle_grey() argument
414 …_to_lab(rgb, lab, profile_info->matrix_in, profile_info->lut_in, profile_info->unbounded_coeffs_in… in dt_ioppr_compensate_middle_grey()
[all …]
H A Dhistogram.c95 const dt_iop_order_iccprofile_info_t *const profile_info) in histogram_helper_cs_rgb_helper_process_pixel_float_compensated() argument
97 const float rgb[3] = { dt_ioppr_compensate_middle_grey(pixel[0], profile_info), in histogram_helper_cs_rgb_helper_process_pixel_float_compensated()
98 dt_ioppr_compensate_middle_grey(pixel[1], profile_info), in histogram_helper_cs_rgb_helper_process_pixel_float_compensated()
99 dt_ioppr_compensate_middle_grey(pixel[2], profile_info) }; in histogram_helper_cs_rgb_helper_process_pixel_float_compensated()
135 const dt_iop_order_iccprofile_info_t *const profile_info) in histogram_helper_cs_rgb_helper_process_pixel_m128_compensated() argument
137 const __m128 rgb = { dt_ioppr_compensate_middle_grey(pixel[0], profile_info), in histogram_helper_cs_rgb_helper_process_pixel_m128_compensated()
138 dt_ioppr_compensate_middle_grey(pixel[1], profile_info), in histogram_helper_cs_rgb_helper_process_pixel_m128_compensated()
139 dt_ioppr_compensate_middle_grey(pixel[2], profile_info), 1.f }; in histogram_helper_cs_rgb_helper_process_pixel_m128_compensated()
311 const dt_iop_order_iccprofile_info_t *const profile_info) in dt_histogram_worker() argument
332 Worker(histogram_params, pixel, thread_hist, j, profile_info); in dt_histogram_worker()
[all …]
/dports/graphics/darktable38/darktable-3.8.0/data/kernels/
H A Dcolor_conversion.h95 … constant const dt_colorspaces_iccprofile_info_cl_t *const profile_info, in apply_trc_in() argument
98 …st float R = lerp_lookup_unbounded(rgb_in.x, lut, profile_info->unbounded_coeffs_in[0], 0, profile… in apply_trc_in()
99 …st float G = lerp_lookup_unbounded(rgb_in.y, lut, profile_info->unbounded_coeffs_in[1], 1, profile… in apply_trc_in()
100 …st float B = lerp_lookup_unbounded(rgb_in.z, lut, profile_info->unbounded_coeffs_in[2], 2, profile… in apply_trc_in()
109 …t float R = lerp_lookup_unbounded(rgb_in.x, lut, profile_info->unbounded_coeffs_out[0], 3, profile… in apply_trc_out()
110 …t float G = lerp_lookup_unbounded(rgb_in.y, lut, profile_info->unbounded_coeffs_out[1], 4, profile… in apply_trc_out()
111 …t float B = lerp_lookup_unbounded(rgb_in.z, lut, profile_info->unbounded_coeffs_out[2], 5, profile… in apply_trc_out()
122 if(profile_info->nonlinearlut) in get_rgb_matrix_luminance()
126 linear_rgb = apply_trc_in(rgb, profile_info, lut); in get_rgb_matrix_luminance()
140 if(profile_info->nonlinearlut) in rgb_matrix_to_xyz()
[all …]
H A Dcolorspaces.cl24 constant const dt_colorspaces_iccprofile_info_cl_t *const profile_info, read_only image2d_t lut)
33 pixel = matrix_product(pixel, profile_info->matrix_out);
35 if(profile_info->nonlinearlut)
36 pixel = apply_trc_out(pixel, profile_info, lut);
43 constant const dt_colorspaces_iccprofile_info_cl_t *const profile_info, read_only image2d_t lut)
52 if(profile_info->nonlinearlut)
53 pixel = apply_trc_in(pixel, profile_info, lut);
55 pixel = matrix_product(pixel, profile_info->matrix_in);
/dports/graphics/darktable/darktable-3.6.1/data/kernels/
H A Dcolor_conversion.h95 … constant const dt_colorspaces_iccprofile_info_cl_t *const profile_info, in apply_trc_in() argument
98 …st float R = lerp_lookup_unbounded(rgb_in.x, lut, profile_info->unbounded_coeffs_in[0], 0, profile… in apply_trc_in()
99 …st float G = lerp_lookup_unbounded(rgb_in.y, lut, profile_info->unbounded_coeffs_in[1], 1, profile… in apply_trc_in()
100 …st float B = lerp_lookup_unbounded(rgb_in.z, lut, profile_info->unbounded_coeffs_in[2], 2, profile… in apply_trc_in()
109 …t float R = lerp_lookup_unbounded(rgb_in.x, lut, profile_info->unbounded_coeffs_out[0], 3, profile… in apply_trc_out()
110 …t float G = lerp_lookup_unbounded(rgb_in.y, lut, profile_info->unbounded_coeffs_out[1], 4, profile… in apply_trc_out()
111 …t float B = lerp_lookup_unbounded(rgb_in.z, lut, profile_info->unbounded_coeffs_out[2], 5, profile… in apply_trc_out()
122 if(profile_info->nonlinearlut) in get_rgb_matrix_luminance()
126 linear_rgb = apply_trc_in(rgb, profile_info, lut); in get_rgb_matrix_luminance()
140 if(profile_info->nonlinearlut) in rgb_matrix_to_xyz()
[all …]
H A Dcolorspaces.cl24 constant const dt_colorspaces_iccprofile_info_cl_t *const profile_info, read_only image2d_t lut)
33 pixel = matrix_product(pixel, profile_info->matrix_out);
35 if(profile_info->nonlinearlut)
36 pixel = apply_trc_out(pixel, profile_info, lut);
43 constant const dt_colorspaces_iccprofile_info_cl_t *const profile_info, read_only image2d_t lut)
52 if(profile_info->nonlinearlut)
53 pixel = apply_trc_in(pixel, profile_info, lut);
55 pixel = matrix_product(pixel, profile_info->matrix_in);
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromeos/services/cellular_setup/
H A Desim_manager.cc164 if (profile_info && in InstallProfileFromActivationCode()
171 if (profile_info) { in InstallProfileFromActivationCode()
188 if (!profile_info) { in InstallProfile()
200 if (!profile_info) { in UninstallProfile()
216 if (!profile_info) { in EnableProfile()
228 profile_info->path(), in EnableProfile()
236 if (!profile_info) { in DisableProfile()
257 if (!profile_info) { in SetProfileNickname()
301 if (!profile_info) in OnCarrierProfilePropertyChanged()
491 if (profile_info) in GetOrCreateESimProfileInfo()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/enterprise/reporting/
H A Dpolicy_info_unittest.cc100 em::ChromeUserProfileInfo profile_info; in TEST_F() local
111 &profile_info); in TEST_F()
112 EXPECT_EQ(2, profile_info.chrome_policies_size()); in TEST_F()
114 auto policy1 = profile_info.chrome_policies(0); in TEST_F()
122 auto policy2 = profile_info.chrome_policies(1); in TEST_F()
151 em::ChromeUserProfileInfo profile_info; in TEST_F() local
159 &profile_info); in TEST_F()
161 EXPECT_EQ(1, profile_info.extension_policies_size()); in TEST_F()
165 auto policy1 = profile_info.extension_policies(0).policies(0); in TEST_F()
175 em::ChromeUserProfileInfo profile_info; in TEST_F() local
[all …]
/dports/databases/xtrabackup/boost_1_59_0/tools/build/src/engine/
H A Ddebug.c16 static profile_info profile_other = { 0 };
17 static profile_info profile_total = { 0 };
32 profile_info * p; in profile_enter()
35 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
40 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
113 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/tools/build/src/engine/
H A Ddebug.c16 static profile_info profile_other = { 0 };
17 static profile_info profile_total = { 0 };
32 profile_info * p; in profile_enter()
35 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
40 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
113 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/tools/build/src/engine/
H A Ddebug.cpp17 static profile_info profile_other = { 0 };
18 static profile_info profile_total = { 0 };
33 profile_info * p; in profile_enter()
36 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
41 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
114 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/tools/build/src/engine/
H A Ddebug.c16 static profile_info profile_other = { 0 };
17 static profile_info profile_total = { 0 };
32 profile_info * p; in profile_enter()
35 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
40 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
113 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/databases/percona57-server/boost_1_59_0/tools/build/src/engine/
H A Ddebug.c16 static profile_info profile_other = { 0 };
17 static profile_info profile_total = { 0 };
32 profile_info * p; in profile_enter()
35 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
40 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
113 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/databases/percona57-client/boost_1_59_0/tools/build/src/engine/
H A Ddebug.c16 static profile_info profile_other = { 0 };
17 static profile_info profile_total = { 0 };
32 profile_info * p; in profile_enter()
35 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
40 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
113 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/devel/boost-jam/boost_1_72_0/tools/build/src/engine/
H A Ddebug.cpp17 static profile_info profile_other = { 0 };
18 static profile_info profile_total = { 0 };
33 profile_info * p; in profile_enter()
36 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
41 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
114 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/devel/boost-docs/boost_1_72_0/tools/build/src/engine/
H A Ddebug.cpp17 static profile_info profile_other = { 0 };
18 static profile_info profile_total = { 0 };
33 profile_info * p; in profile_enter()
36 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
41 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
114 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/devel/boost-libs/boost_1_72_0/tools/build/src/engine/
H A Ddebug.cpp17 static profile_info profile_other = { 0 };
18 static profile_info profile_total = { 0 };
33 profile_info * p; in profile_enter()
36 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
41 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
114 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/devel/boost_build/build-29baa79/src/engine/
H A Ddebug.cpp17 static profile_info profile_other = { 0 };
18 static profile_info profile_total = { 0 };
33 profile_info * p; in profile_enter()
36 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
41 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
114 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/devel/boost-python-libs/boost_1_72_0/tools/build/src/engine/
H A Ddebug.cpp17 static profile_info profile_other = { 0 };
18 static profile_info profile_total = { 0 };
33 profile_info * p; in profile_enter()
36 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
41 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
114 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/devel/hyperscan/boost_1_75_0/tools/build/src/engine/
H A Ddebug.cpp17 static profile_info profile_other = { 0 };
18 static profile_info profile_total = { 0 };
33 profile_info * p; in profile_enter()
36 profile_hash = hashinit( sizeof( profile_info ), "profile" ); in profile_enter()
41 p = (profile_info *)hash_insert( profile_hash, rulename, &found ); in profile_enter()
114 profile_info * p = (profile_info *)p_; in dump_profile_entry()
/dports/multimedia/libv4l/linux-5.13-rc2/include/trace/events/
H A Dufs.h153 TP_PROTO(const char *dev_name, const char *profile_info, s64 time_us,
156 TP_ARGS(dev_name, profile_info, time_us, err),
160 __string(profile_info, profile_info)
167 __assign_str(profile_info, profile_info);
173 __get_str(dev_name), __get_str(profile_info),
178 TP_PROTO(const char *dev_name, const char *profile_info, s64 time_us,
180 TP_ARGS(dev_name, profile_info, time_us, err));
183 TP_PROTO(const char *dev_name, const char *profile_info, s64 time_us,
185 TP_ARGS(dev_name, profile_info, time_us, err));
188 TP_PROTO(const char *dev_name, const char *profile_info, s64 time_us,
[all …]

12345678910>>...24