Home
last modified time | relevance | path

Searched refs:this_value (Results 1 – 25 of 230) sorted by relevance

12345678910

/dports/graphics/gimp-app/gimp-2.10.30/plug-ins/selection-to-path/
H A Dmath.c139 unsigned this_value; in find_bounds() local
147 for (this_value = 0; this_value < value_count; this_value++) in find_bounds()
149 if (values[this_value] < *min) in find_bounds()
150 *min = values[this_value]; in find_bounds()
152 if (values[this_value] > *max) in find_bounds()
153 *max = values[this_value]; in find_bounds()
166 int this_value; in map_to_unit() local
173 for (this_value = 0; this_value < value_count; this_value++) in map_to_unit()
174 mapped_values[this_value] = (values[this_value] - smallest) / largest; in map_to_unit()
/dports/games/gnugo/gnugo-3.8/engine/
H A Dvalue_moves.c1846 this_value = 0.0; in estimate_territorial_value()
1848 this_value *= 0.3; in estimate_territorial_value()
1853 this_value *= 0.5; in estimate_territorial_value()
1904 this_value = 0.0; in estimate_territorial_value()
1906 this_value *= 0.3; in estimate_territorial_value()
1911 this_value *= 0.5; in estimate_territorial_value()
2289 this_value = 0.0; in estimate_territorial_value()
2304 this_value = 0.0; in estimate_territorial_value()
2418 this_value = gg_max(this_value, 0); in estimate_territorial_value()
2891 this_value = this_value * attack_dragon_weight; in estimate_strategical_value()
[all …]
/dports/databases/xapian-core12/xapian-core-1.2.25/backends/flint/
H A Dflint_values.cc45 string & this_value) in unpack_entry() argument
47 …TIC_VOID(DB, "FlintValueTable::unpack_entry", pos | (const void*)end | this_value_no | this_value); in unpack_entry()
53 if (!F_unpack_string(pos, end, this_value)) { in unpack_entry()
59 this_value_no << " is `" << this_value << "'"); in unpack_entry()
101 string this_value; in get_value() local
103 unpack_entry(&pos, end, &this_value_no, this_value); in get_value()
106 value = this_value; in get_value()
135 string this_value; in get_all_values() local
137 unpack_entry(&pos, end, &this_value_no, this_value); in get_all_values()
138 values.insert(make_pair(this_value_no, this_value)); in get_all_values()
/dports/japanese/tiarra/tiarra-20100212/main/Configuration/
H A DBlock.pm71 my ($this_value, $that_value) = @_;
74 if (ref($this_value) ne ref($that_value)) {
79 if (ref($this_value) eq 'ARRAY') {
81 if (@$this_value != @$that_value) {
84 my $valsize = @$this_value;
86 if (!$walk->($this_value->[$j], $that_value->[$j])) {
91 elsif (UNIVERSAL::isa($this_value,'Configuration::Block')) {
93 if (!$this_value->equals($that_value)) {
98 if ($this_value ne $that_value) {
113 my $this_value = $this->[TABLE]->{$this_keys[$i]};
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/atoms/macros/atoms_internals/
H A DatomsDESCRIPTIONwrite.sci100 this_value = this_package(this_package_fields(k));
102 if type(this_value)<>10 then
106 if (this_field=="Version") & ~isempty(strindex(this_value(1),"-")) then
108 … sprintf("Version: %s",part(this_value(1),1:strindex(this_value(1),"-")-1)) ; ..
109 …sprintf("PackagingVersion: %s",part(this_value(1),strindex(this_value(1),"-")+1:length(this_value(…
114 str_mat = [ str_mat ; this_field+": "+this_value(1) ];
117 if size(this_value,"*") == 1 then
121 for l=2:size(this_value,"*")
122 str_mat = [ str_mat ; " "+this_value(l) ];
/dports/games/prboom-plus/prboom-plus-2.5.1.3/src/PCSOUND/
H A Dpcsound_sdl.c77 Sint16 this_value; in PCSound_Mix_Callback() local
127 this_value = 0; in PCSound_Mix_Callback()
141 this_value = SQUARE_WAVE_AMP; in PCSound_Mix_Callback()
145 this_value = -SQUARE_WAVE_AMP; in PCSound_Mix_Callback()
155 *leftptr += this_value; in PCSound_Mix_Callback()
156 *rightptr += this_value; in PCSound_Mix_Callback()
/dports/games/chocolate-doom/chocolate-doom-3.0.1/pcsound/
H A Dpcsound_sdl.c60 Sint16 this_value; in PCSound_Mix_Callback() local
105 this_value = 0; in PCSound_Mix_Callback()
119 this_value = SQUARE_WAVE_AMP; in PCSound_Mix_Callback()
123 this_value = -SQUARE_WAVE_AMP; in PCSound_Mix_Callback()
133 *leftptr += this_value; in PCSound_Mix_Callback()
134 *rightptr += this_value; in PCSound_Mix_Callback()
/dports/games/crispy-doom/crispy-doom-crispy-doom-5.10.3/pcsound/
H A Dpcsound_sdl.c60 Sint16 this_value; in PCSound_Mix_Callback() local
105 this_value = 0; in PCSound_Mix_Callback()
119 this_value = SQUARE_WAVE_AMP; in PCSound_Mix_Callback()
123 this_value = -SQUARE_WAVE_AMP; in PCSound_Mix_Callback()
133 *leftptr += this_value; in PCSound_Mix_Callback()
134 *rightptr += this_value; in PCSound_Mix_Callback()
/dports/benchmarks/phoronix-test-suite/phoronix-test-suite-10.6.1/pts-core/objects/phodevi/parsers/
H A Dphodevi_osx_parser.php64 $this_value = trim($line[1]);
66 if(!empty($this_value) && !in_array($this_value, $ignore_values))
70 array_push($value, $this_value);
74 $value = $this_value;
H A Dphodevi_solaris_parser.php66 $this_value = count($line) > 1 ? $line[1] : null;
68 if(empty($this_value) && !empty($section))
73 …_strings::proximity_match($section, $this_section)) && !empty($this_value) && $this_value != 'Unkn…
75 array_push($values, $this_value);
H A Dphodevi_linux_parser.php326 $this_value = (count($line) > 1 ? $line[1] : null);
330 array_push($cpuinfo_matches, $this_value);
374 $this_value = trim(count($line) > 1 ? $line[1] : '');
377 $this_value = explode(' ', $this_value);
379 $cpuinfo_r[$this_attribute] = $this_value;
456 $this_value = (count($line) > 1 ? $line[1] : null);
460 $value = $this_value;
678 $this_value = substr($this_remainder, 0, strpos($this_remainder, ' '));
680 if(is_numeric($this_value) && $this_value > 0)
682 $value = $this_value;
/dports/lang/parrot/parrot-8.1.0/lib/Parrot/Configure/
H A DTrace.pm96 my ($this_key, $this_value) = each %this;
98 $this_value = q{} unless defined $this_value;
99 if ($prior_value ne $this_value) {
104 after => $this_value,
/dports/math/pspp/pspp-1.4.1/src/math/
H A Dorder-stats.c129 const double this_value = case_data_idx (cx, val_idx)->f; in order_stats_accumulate_idx() local
132 assert (this_value >= prev_value); in order_stats_accumulate_idx()
134 if (prev_value == -DBL_MAX || prev_value == this_value) in order_stats_accumulate_idx()
137 if (prev_value > -DBL_MAX && this_value > prev_value) in order_stats_accumulate_idx()
145 prev_value = this_value; in order_stats_accumulate_idx()
/dports/graphics/pear-Image_Graph/Image_Graph-0.8.0/Graph/Axis/
H A DCategory.php329 $this_value = false;
333 && ($this_value === false)
336 $this_value = $value;
338 $this_value = $value;
343 if ($this_value === false) {
353 $key = array_search($this_value, $keys);
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/shark/
H A DsharkState.cpp157 SharkValue *this_value = this->local(i); in merge() local
159 assert((this_value == NULL) == (other_value == NULL), "should be"); in merge()
160 if (this_value != NULL) { in merge()
163 set_local(i, this_value->merge( in merge()
171 SharkValue *this_value = this->stack(i); in merge() local
173 assert((this_value == NULL) == (other_value == NULL), "should be"); in merge()
174 if (this_value != NULL) { in merge()
177 set_stack(i, this_value->merge( in merge()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/shark/
H A DsharkState.cpp157 SharkValue *this_value = this->local(i); in merge() local
159 assert((this_value == NULL) == (other_value == NULL), "should be"); in merge()
160 if (this_value != NULL) { in merge()
163 set_local(i, this_value->merge( in merge()
171 SharkValue *this_value = this->stack(i); in merge() local
173 assert((this_value == NULL) == (other_value == NULL), "should be"); in merge()
174 if (this_value != NULL) { in merge()
177 set_stack(i, this_value->merge( in merge()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/os/bsd/
H A Ddecoder_machO.cpp77 uint32_t this_value = cur_nlist->n_value; in decode() local
79 if (addr_relative == this_value) { in decode()
81 found_symval = this_value; in decode()
83 } else if (addr_relative > this_value) { in decode()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/os/bsd/
H A Ddecoder_machO.cpp77 uint32_t this_value = cur_nlist->n_value; in decode() local
79 if (addr_relative == this_value) { in decode()
81 found_symval = this_value; in decode()
83 } else if (addr_relative > this_value) { in decode()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/os/bsd/
H A Ddecoder_machO.cpp77 uint32_t this_value = cur_nlist->n_value; in decode() local
79 if (addr_relative == this_value) { in decode()
81 found_symval = this_value; in decode()
83 } else if (addr_relative > this_value) { in decode()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/os/bsd/
H A Ddecoder_machO.cpp77 uint32_t this_value = cur_nlist->n_value; in decode() local
79 if (addr_relative == this_value) { in decode()
81 found_symval = this_value; in decode()
83 } else if (addr_relative > this_value) { in decode()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/os/bsd/
H A Ddecoder_machO.cpp77 uint32_t this_value = cur_nlist->n_value; in decode() local
79 if (addr_relative == this_value) { in decode()
81 found_symval = this_value; in decode()
83 } else if (addr_relative > this_value) { in decode()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/os/bsd/
H A Ddecoder_machO.cpp77 uint32_t this_value = cur_nlist->n_value; in decode() local
79 if (addr_relative == this_value) { in decode()
81 found_symval = this_value; in decode()
83 } else if (addr_relative > this_value) { in decode()
/dports/biology/artemis/artemis-17.0.1-11-g3e43d27e/uk/ac/sanger/artemis/plot/
H A DGCSDWindowAlgorithm.java158 final double this_value = current_gc_count / window_size; in calculateSD() local
160 sum_so_far += this_value * this_value; in calculateSD()
162 gc_so_far += this_value; in calculateSD()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/os/bsd/
H A Ddecoder_machO.cpp77 uint32_t this_value = cur_nlist->n_value; in decode() local
79 if (addr_relative == this_value) { in decode()
81 found_symval = this_value; in decode()
83 } else if (addr_relative > this_value) { in decode()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/os/bsd/
H A Ddecoder_machO.cpp77 uint32_t this_value = cur_nlist->n_value; in decode() local
79 if (addr_relative == this_value) { in decode()
81 found_symval = this_value; in decode()
83 } else if (addr_relative > this_value) { in decode()

12345678910