Home
last modified time | relevance | path

Searched refs:var_max (Results 1 – 25 of 112) sorted by relevance

12345

/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/hipe/misc/
H A Dhipe_gensym.erl59 put({What,var_max}, 0),
100 Tmax = {What, var_max},
131 {get({What,var_min}), get({What,var_max})}.
137 put({What,var_max}, Max),
162 put(var_max, X),
168 put({What,var_max}, X),
174 get(var_max).
179 get({What,var_max}).
184 C = get(var_max),
185 put(var_max, C+1),
[all …]
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/hipe/misc/
H A Dhipe_gensym.erl59 put({What,var_max}, 0),
100 Tmax = {What, var_max},
131 {get({What,var_min}), get({What,var_max})}.
137 put({What,var_max}, Max),
162 put(var_max, X),
168 put({What,var_max}, X),
174 get(var_max).
179 get({What,var_max}).
184 C = get(var_max),
185 put(var_max, C+1),
[all …]
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/hipe/misc/
H A Dhipe_gensym.erl59 put({What,var_max}, 0),
100 Tmax = {What, var_max},
131 {get({What,var_min}), get({What,var_max})}.
137 put({What,var_max}, Max),
162 put(var_max, X),
168 put({What,var_max}, X),
174 get(var_max).
179 get({What,var_max}).
184 C = get(var_max),
185 put(var_max, C+1),
[all …]
/dports/net-mgmt/pandorafms_console/pandorafms_console-6.0SP2/include/graphs/
H A Dfunctions_utils.php215 $var_max = max($var_r,$var_g,$var_b);
216 $del_max = $var_max - $var_min;
218 $l = ($var_max + $var_min) / 2;
226 $s = $del_max / ($var_max + $var_min);
229 $s = $del_max / (2 - $var_max - $var_min);
232 $del_r = ((($var_max - $var_r) / 6) + ($del_max / 2)) / $del_max;
233 $del_g = ((($var_max - $var_g) / 6) + ($del_max / 2)) / $del_max;
234 $del_b = ((($var_max - $var_b) / 6) + ($del_max / 2)) / $del_max;
236 if ($var_r == $var_max) {
239 elseif ($var_g == $var_max) {
[all …]
/dports/textproc/turboxsl/turboxsl-b03c2c9/src/
H A Dvariables.c26 pctx->var_max = 0; in free_variables()
35 if(pctx->var_max==0) { in create_variable()
36 pctx->var_max = 200; in create_variable()
38 pctx->vars=malloc(pctx->var_max*sizeof(XSL_VARIABLE)); in create_variable()
39 } else if(pctx->var_pos>=pctx->var_max) { in create_variable()
40 pctx->var_max += 100; in create_variable()
67 if(pctx->var_max==0) { in set_global_var()
68 pctx->var_max = 200; in set_global_var()
70 pctx->vars=malloc(pctx->var_max*sizeof(XSL_VARIABLE)); in set_global_var()
71 } else if(pctx->var_pos>=pctx->var_max) { in set_global_var()
[all …]
/dports/math/py-or-tools/or-tools-9.2/ortools/constraint_solver/
H A Dtable.cc471 const int64_t var_max = var->Max(); in Propagate() local
478 var->SetValue(var_max); in Propagate()
490 const int64_t var_max = var->Max(); in Propagate() local
492 int64_t new_max = var_max; in Propagate()
559 const int64_t var_max = var->Max(); in Update() local
568 OrTempMask(var_index, var_max - omin); in Update()
946 const int64_t var_max = var->Max(); in Propagate() local
954 var->SetValue(var_max); in Propagate()
963 const int64_t var_max = var->Max(); in Propagate() local
965 int64_t new_max = var_max; in Propagate()
[all …]
/dports/math/py-colormath/colormath-3.0.0/colormath/
H A Dcolor_conversions.py583 if var_max == var_min:
585 elif var_max == var_R:
587 elif var_max == var_G:
589 elif var_max == var_B:
607 var_max = max(var_R, var_G, var_B)
612 if var_max == 0:
615 var_S = 1.0 - (var_min / var_max)
617 var_V = var_max
641 var_max = max(var_R, var_G, var_B)
645 var_L = 0.5 * (var_max + var_min)
[all …]
/dports/science/smoldyn/smoldyn-2.67/source/BioNetGen/Perl2/
H A Dscan_var.pl171 my ($file, $var, $var_min, $var_max, $n_pts) = @mandatory_args;
191 $var_max = log($var_max);
196 if ($var_max==$var_min){
200 $delta = ($var_max-$var_min)/($n_pts-1);
/dports/science/code_saturne/code_saturne-7.1.0/src/fvm/
H A Dfvm_to_histogram.c157 cs_real_t var_max, in _display_histogram_txt() argument
187 fprintf(w->f, _(" maximum value = %10.5e\n\n"), (double)var_max); in _display_histogram_txt()
189 var_step = CS_ABS(var_max - var_min) / w->n_sub; in _display_histogram_txt()
191 if (CS_ABS(var_max - var_min) > 0.) { in _display_histogram_txt()
203 var_max, in _display_histogram_txt()
224 cs_real_t var_max, in _display_histogram_tex() argument
229 double var_step = CS_ABS(var_max - var_min) / w->n_sub; in _display_histogram_tex()
321 cs_real_t var_max, in _display_histograms() argument
349 display_func(var_min, var_max, count, w, var_name); in _display_histograms()
H A Dfvm_to_vtk_histogram.cxx112 cs_real_t var_max, in fvm_to_vtk_display_histogram_png() argument
117 double var_step = CS_ABS(var_max - var_min) / w->n_sub; in fvm_to_vtk_display_histogram_png()
H A Dfvm_to_vtk_histogram.h60 cs_real_t var_max,
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/queso/test/test_infinite/
H A Dtest_inf_gaussian.C99 double var_max; in main() local
104 var_max = sigmasq + 3.0 * sigmasq * std::sqrt(2.0 / (num_samples - 1)); in main()
105 if (vars[j] < var_min || vars[j] > var_max) { in main()
/dports/math/py-or-tools/or-tools-9.2/examples/python/
H A Dgolomb8.py40 var_max = size * size
43 marks = [solver.IntVar(0, var_max, 'marks_%d' % i) for i in all_vars]
/dports/math/py-or-tools/or-tools-9.2/ortools/sat/
H A Dscheduling_constraints.cc119 const IntegerValue var_max = integer_trail_->UpperBound(exprs_[i]); in Propagate() local
126 if (var_max < min_of_selected_maxes) { in Propagate()
127 min_of_selected_maxes = var_max; in Propagate()
136 max_of_possible_maxes = std::max(max_of_possible_maxes, var_max); in Propagate()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/queso/test/test_GaussianVectorRVClass/
H A Dtest_uqGaussianVectorRVClass.C96 double var_max = sigmasq + 3.0 * sqrt(2.0 * sigmasq * sigmasq / (num_samples - 1)); in main() local
100 if (var[j] < var_min || var[j] > var_max) { in main()
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/unsupervised/
H A Dowpca.py271 var_max = self._cumulative[max_comp - 1]
272 if var_max != numpy.floor(self.variance_covered / 100.0):
274 assert numpy.isfinite(var_max)
275 self.variance_covered = int(var_max * 100)
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/queso/test/test_algorithms/
H A Dtest_mala.C138 double var_max = sigmasq + 3.0 * sqrt(2.0 * sigmasq * sigmasq / (num_samples - 1)); in main() local
142 if (var[j] < var_min || var[j] > var_max) { in main()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-eh-spec.C9 constexpr double var_max = my_limits<double>::max(); // #2 Error
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-eh-spec.C9 constexpr double var_max = my_limits<double>::max(); // #2 Error
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-eh-spec.C9 constexpr double var_max = my_limits<double>::max(); // #2 Error
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-eh-spec.C9 constexpr double var_max = my_limits<double>::max(); // #2 Error
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-eh-spec.C9 constexpr double var_max = my_limits<double>::max(); // #2 Error
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-eh-spec.C9 constexpr double var_max = my_limits<double>::max(); // #2 Error
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-eh-spec.C9 constexpr double var_max = my_limits<double>::max(); // #2 Error
/dports/lang/gnat_util/gcc-6-20180516/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-eh-spec.C9 constexpr double var_max = my_limits<double>::max(); // #2 Error

12345