Home
last modified time | relevance | path

Searched refs:low_input (Results 1 – 22 of 22) sorted by path

/dports/graphics/digikam/digikam-7.4.0/core/libs/dimg/filters/levels/
H A Dimagelevels.cpp75 int low_input[5] = { 0 }; member
171 d->levels->low_input[channel] = 0; in levelsChannelReset()
209 d->levels->low_input[channel] = 0; in levelsChannelAuto()
229 d->levels->low_input[channel] = i + 1; in levelsChannelAuto()
321 input -= d->levels->low_input[channel]; in levelsGrayToneAdjustByColors()
369 inten = (double)(i - d->levels->low_input[j]); in levelsCalculateTransfers()
622 d->levels->low_input[channel] = val; in setLevelLowInputValue()
668 return (d->levels->low_input[channel]); in getLevelLowInputValue()
709 int low_input[5]; in loadLevelsFromGimpLevelsFile() local
750 &low_input[i], in loadLevelsFromGimpLevelsFile()
[all …]
/dports/graphics/gimp-app/gimp-2.10.30/app/operations/
H A Dgimpbrightnesscontrastconfig.c202 levels->low_input[GIMP_HISTOGRAM_VALUE] = in gimp_brightness_contrast_config_to_levels_config()
228 levels->low_input[GIMP_HISTOGRAM_VALUE] = in gimp_brightness_contrast_config_to_levels_config()
H A Dgimplevelsconfig.c198 g_value_set_double (value, self->low_input[self->channel]); in gimp_levels_config_get_property()
372 config_a->low_input[channel] != config_b->low_input[channel] || in gimp_levels_config_equal()
423 dest_config->low_input[channel] = src_config->low_input[channel]; in gimp_levels_config_copy()
527 config->low_input[channel] = 0.0; in gimp_levels_config_stretch_channel()
658 input -= config->low_input[channel]; in gimp_levels_config_adjust_by_colors()
721 x = config->low_input[channel]; in gimp_levels_config_to_curves_config()
761 x = config->low_input[channel] + dx; in gimp_levels_config_to_curves_config()
798 x = config->low_input[channel] + delta_in * in gimp_levels_config_to_curves_config()
822 gint low_input[5]; in gimp_levels_config_load_cruft() local
870 &low_input[i], in gimp_levels_config_load_cruft()
[all …]
H A Dgimplevelsconfig.h46 gdouble low_input[5]; member
H A Dgimpoperationlevels.c94 gdouble low_input, in gimp_operation_levels_map() argument
103 if (high_input != low_input) in gimp_operation_levels_map()
104 value = (value - low_input) / (high_input - low_input); in gimp_operation_levels_map()
106 value = (value - low_input); in gimp_operation_levels_map()
158 config->low_input[channel + 1], in gimp_operation_levels_process()
169 config->low_input[0], in gimp_operation_levels_process()
198 if (config->high_input[channel] != config->low_input[channel]) in gimp_operation_levels_map_input()
199 value = ((value - config->low_input[channel]) / in gimp_operation_levels_map_input()
200 (config->high_input[channel] - config->low_input[channel])); in gimp_operation_levels_map_input()
202 value = (value - config->low_input[channel]); in gimp_operation_levels_map_input()
/dports/graphics/gimp-app/gimp-2.10.30/app/pdb/
H A Dcolor-cmds.c109 gint32 low_input; in levels_invoker() local
117 low_input = g_value_get_int (gimp_value_array_index (args, 2)); in levels_invoker()
138 "low-input", low_input / 255.0, in levels_invoker()
H A Ddrawable-color-cmds.c567 gdouble low_input; in drawable_levels_invoker() local
577 low_input = g_value_get_double (gimp_value_array_index (args, 2)); in drawable_levels_invoker()
600 "low-input", low_input, in drawable_levels_invoker()
/dports/graphics/gimp-app/gimp-2.10.30/app/tools/
H A Dgimplevelstool.c487 tool->low_input = gtk_spin_button_get_adjustment (GTK_SPIN_BUTTON (spinbutton)); in gimp_levels_tool_dialog()
489 tool->low_input); in gimp_levels_tool_dialog()
712 gdouble low = gtk_adjustment_get_value (levels_tool->low_input); in gimp_levels_tool_config_notify()
719 gtk_adjustment_set_upper (levels_tool->low_input, high); in gimp_levels_tool_config_notify()
825 config->low_input[GIMP_HISTOGRAM_VALUE] = 0.0; in gimp_levels_tool_color_picked()
1022 gdouble low_input = gtk_adjustment_get_value (tool->low_input); in levels_linear_gamma_changed() local
1026 delta = (high_input - low_input) / 2.0; in levels_linear_gamma_changed()
1030 mid = low_input + delta; in levels_linear_gamma_changed()
H A Dgimplevelstool.h53 GtkAdjustment *low_input; member
/dports/graphics/gimp-app/gimp-2.10.30/libgimp/
H A Dgimpcolor_pdb.c87 gint low_input, in gimp_levels() argument
101 GIMP_PDB_INT32, low_input, in gimp_levels()
H A Dgimpcolor_pdb.h42 gint low_input,
H A Dgimpdrawablecolor_pdb.c545 gdouble low_input, in gimp_drawable_levels() argument
561 GIMP_PDB_FLOAT, low_input, in gimp_drawable_levels()
H A Dgimpdrawablecolor_pdb.h80 gdouble low_input,
/dports/graphics/gimp-beautify-plugin/beautify-e209c8d/
H A Dbeautify.c728 gint low_input = 0; in adjustment() local
740 low_input += value; in adjustment()
749 low_input, high_input, in adjustment()
/dports/lang/f2c/f2c-20200916/src/
H A Dparse_args.c298 char low_input[MAX_INPUT_SIZE]; local
304 (void) lower_string (low_input, norm_input);
307 int this_length = match(norm_input, low_input, &table[i], use_prefix);
340 match(norm_input, low_input, entry, use_prefix) in match() argument
342 char *low_input;
346 match(char *norm_input, char *low_input, arg_info *entry, boolean use_prefix)
371 input = low_input;
/dports/lang/v8/v8-9.6.180.12/src/compiler/
H A Dint64-lowering.cc706 Node* low_input; in LowerNode() local
709 low_input = GetReplacementLow(input); in LowerNode()
712 low_input = GetReplacementHigh(input); in LowerNode()
728 graph()->NewNode(op1, low_input, masked_shift), in LowerNode()
733 graph()->NewNode(op2, low_input, inv_shift)); in LowerNode()
/dports/science/afni/afni-AFNI_21.3.16/src/f2c/
H A Dparse_args.c298 char low_input[MAX_INPUT_SIZE]; local
304 (void) lower_string (low_input, norm_input);
307 int this_length = match(norm_input, low_input, &table[i], use_prefix);
340 match(norm_input, low_input, entry, use_prefix) in match() argument
342 char *low_input;
346 match(char *norm_input, char *low_input, arg_info *entry, boolean use_prefix)
371 input = low_input;
/dports/science/nwchem-data/nwchem-7.0.2-release/src/driver/
H A Doniom.F59 character*1024 high_input, medium_input, low_input
157 $ low_input = ' '
289 if (low_input .ne. ' ')
290 $ write(6,101) low_input(1:inp_strlen(low_input))
477 $ low_input)
495 $ model_charge, low_input)
535 $ low_basis, low_ecp, inter_charge, low_input)
806 character*1024 high_input, medium_input, low_input
827 low_input = ' '
863 $ low_input)
[all …]
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/driver/
H A Doniom.F59 character*1024 high_input, medium_input, low_input
157 $ low_input = ' '
289 if (low_input .ne. ' ')
290 $ write(6,101) low_input(1:inp_strlen(low_input))
477 $ low_input)
495 $ model_charge, low_input)
535 $ low_basis, low_ecp, inter_charge, low_input)
806 character*1024 high_input, medium_input, low_input
827 low_input = ' '
863 $ low_input)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/compiler/
H A Dint64-lowering.cc693 Node* low_input; in LowerNode() local
696 low_input = GetReplacementLow(input); in LowerNode()
699 low_input = GetReplacementHigh(input); in LowerNode()
715 graph()->NewNode(op1, low_input, masked_shift), in LowerNode()
720 graph()->NewNode(op2, low_input, inv_shift)); in LowerNode()
/dports/www/node10/node-v10.24.1/deps/v8/src/compiler/
H A Dint64-lowering.cc697 Node* low_input; in LowerNode() local
700 low_input = GetReplacementLow(input); in LowerNode()
703 low_input = GetReplacementHigh(input); in LowerNode()
714 graph()->NewNode(machine()->Word32Shr(), low_input, masked_shift), in LowerNode()
719 graph()->NewNode(machine()->Word32Shl(), low_input, inv_shift)); in LowerNode()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/compiler/
H A Dint64-lowering.cc690 Node* low_input; in LowerNode() local
693 low_input = GetReplacementLow(input); in LowerNode()
696 low_input = GetReplacementHigh(input); in LowerNode()
707 graph()->NewNode(machine()->Word32Shr(), low_input, masked_shift), in LowerNode()
712 graph()->NewNode(machine()->Word32Shl(), low_input, inv_shift)); in LowerNode()