Home
last modified time | relevance | path

Searched refs:last_value (Results 1 – 25 of 1863) sorted by relevance

12345678910>>...75

/dports/games/openttd/openttd-12.1/src/
H A Dnewgrf_spritegroup.cpp165 case DSGA_OP_SDIV: return value == 0 ? (S)last_value : (S)last_value / (S)value; in EvalAdjustT()
166 case DSGA_OP_SMOD: return value == 0 ? (S)last_value : (S)last_value % (S)value; in EvalAdjustT()
167 case DSGA_OP_UDIV: return value == 0 ? (U)last_value : (U)last_value / (U)value; in EvalAdjustT()
168 case DSGA_OP_UMOD: return value == 0 ? (U)last_value : (U)last_value % (U)value; in EvalAdjustT()
173 case DSGA_OP_STO: _temp_store.StoreValue((U)value, (S)last_value); return last_value; in EvalAdjustT()
175 case DSGA_OP_STOP: scope->StorePSA((U)value, (S)last_value); return last_value; in EvalAdjustT()
177 case DSGA_OP_SCMP: return ((S)last_value == (S)value) ? 1 : ((S)last_value < (S)value ? 0 : 2); in EvalAdjustT()
178 case DSGA_OP_UCMP: return ((U)last_value == (U)value) ? 1 : ((U)last_value < (U)value ? 0 : 2); in EvalAdjustT()
194 uint32 last_value = 0; in Resolve() local
229 last_value = value; in Resolve()
[all …]
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/mysql-test/columnstore/basic/r/
H A Dmcs127_window_function_last_value.result7 a b last_value
18 a b last_value
29 a b last_value
40 a b last_value
51 a b last_value
62 a b last_value
73 a b last_value
84 a b last_value
95 a b last_value
106 a b last_value
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/mysql-test/columnstore/basic/r/
H A Dmcs127_window_function_last_value.result7 a b last_value
18 a b last_value
29 a b last_value
40 a b last_value
51 a b last_value
62 a b last_value
73 a b last_value
84 a b last_value
95 a b last_value
106 a b last_value
[all …]
/dports/databases/pglogical/pglogical-REL2_4_0/
H A Dpglogical_sequences.c47 int64 last_value; member
63 int64 last_value; in sequence_get_last_value() local
71 last_value = seq->last_value; in sequence_get_last_value()
75 return last_value; in sequence_get_last_value()
111 int64 last_value; in synchronize_sequences() local
125 if (oldseq->last_value >= last_value + SEQUENCE_REPLICATION_MIN_CACHE / 2) in synchronize_sequences()
132 if (newseq->last_value + newseq->cache_size / 2 < last_value) in synchronize_sequences()
136 if (newseq->last_value + newseq->cache_size <= last_value) in synchronize_sequences()
140 newseq->last_value = last_value + newseq->cache_size; in synchronize_sequences()
190 int64 last_value; in synchronize_sequence() local
[all …]
/dports/devel/godot2/godot-2.1.6-stable/modules/chibi/
H A Dcp_loader_it_patterns.cpp55 CPNote last_value[64]; //last value of each in load_patterns() local
60 last_value[j].clear(); in load_patterns()
102 last_value[channel].note = note.note; in load_patterns()
111 last_value[channel].instrument = note.instrument; in load_patterns()
119 last_value[channel].volume = note.volume; in load_patterns()
127 last_value[channel].command = note.command; in load_patterns()
131 last_value[channel].parameter = note.parameter; in load_patterns()
136 note.note = last_value[channel].note; in load_patterns()
145 note.volume = last_value[channel].volume; in load_patterns()
149 note.command = last_value[channel].command; in load_patterns()
[all …]
/dports/devel/godot2-tools/godot-2.1.6-stable/modules/chibi/
H A Dcp_loader_it_patterns.cpp55 CPNote last_value[64]; //last value of each in load_patterns() local
60 last_value[j].clear(); in load_patterns()
102 last_value[channel].note = note.note; in load_patterns()
111 last_value[channel].instrument = note.instrument; in load_patterns()
119 last_value[channel].volume = note.volume; in load_patterns()
127 last_value[channel].command = note.command; in load_patterns()
131 last_value[channel].parameter = note.parameter; in load_patterns()
136 note.note = last_value[channel].note; in load_patterns()
145 note.volume = last_value[channel].volume; in load_patterns()
149 note.command = last_value[channel].command; in load_patterns()
[all …]
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/mysql-test/columnstore/basic/t/
H A Dmcs127_window_function_last_value.test17 SELECT a, b, LAST_VALUE(b) OVER(ORDER BY a) last_value FROM t1;
18 SELECT a, b, LAST_VALUE(b) OVER(ORDER BY b DESC) last_value FROM t1;
19 SELECT a, b, LAST_VALUE(a) OVER(ORDER BY b) last_value FROM t1;
20 SELECT a, b, LAST_VALUE(b) OVER(ORDER BY a DESC) last_value FROM t1;
21 SELECT a, b, LAST_VALUE(a) OVER w last_value FROM t1 WINDOW w AS (ORDER BY a DESC);
22 SELECT a, b, LAST_VALUE(b) OVER w last_value FROM t1 WINDOW w AS (ORDER BY b);
23 SELECT a, b, LAST_VALUE(b) OVER(PARTITION BY b) last_value FROM t1;
24 SELECT a, b, LAST_VALUE(b) OVER(PARTITION BY a) last_value FROM t1;
25 …E(a) OVER(ORDER BY b RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) last_value FROM t1;
26 …E(b) OVER(ORDER BY b RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) last_value FROM t1;
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/mysql-test/columnstore/basic/t/
H A Dmcs127_window_function_last_value.test17 SELECT a, b, LAST_VALUE(b) OVER(ORDER BY a) last_value FROM t1;
18 SELECT a, b, LAST_VALUE(b) OVER(ORDER BY b DESC) last_value FROM t1;
19 SELECT a, b, LAST_VALUE(a) OVER(ORDER BY b) last_value FROM t1;
20 SELECT a, b, LAST_VALUE(b) OVER(ORDER BY a DESC) last_value FROM t1;
21 SELECT a, b, LAST_VALUE(a) OVER w last_value FROM t1 WINDOW w AS (ORDER BY a DESC);
22 SELECT a, b, LAST_VALUE(b) OVER w last_value FROM t1 WINDOW w AS (ORDER BY b);
23 SELECT a, b, LAST_VALUE(b) OVER(PARTITION BY b) last_value FROM t1;
24 SELECT a, b, LAST_VALUE(b) OVER(PARTITION BY a) last_value FROM t1;
25 …E(a) OVER(ORDER BY b RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) last_value FROM t1;
26 …E(b) OVER(ORDER BY b RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) last_value FROM t1;
[all …]
/dports/audio/blop/blop-0.2.8/src/
H A Dtracker_2025.so.c57 LADSPA_Data last_value; member
124 plugin->last_value = 0.0f; in activateTracker()
156 LADSPA_Data last_value = plugin->last_value; in runTracker_gaaadaia_oa() local
172 last_value = last_value * (1.0f - rate) + in * rate; in runTracker_gaaadaia_oa()
174 output[s] = last_value; in runTracker_gaaadaia_oa()
177 plugin->last_value = last_value; in runTracker_gaaadaia_oa()
209 LADSPA_Data last_value = plugin->last_value; in runTracker_gaacdcia_oa() local
225 rate = in > last_value ? hattack : hdecay; in runTracker_gaacdcia_oa()
229 last_value = last_value * (1.0f - rate) + in * rate; in runTracker_gaacdcia_oa()
231 output[s] = last_value; in runTracker_gaacdcia_oa()
[all …]
/dports/net-mgmt/p5-FusionInventory-Agent/FusionInventory-Agent-2.5.2/lib/FusionInventory/Agent/SNMP/
H A DMock.pm112 my $last_value;
129 $last_value = [ $type, $value ];
130 $self->_setValue($oid, $last_value);
146 $last_value = [ $type, $value ];
147 $self->_setValue($oid, $last_value);
150 $last_value = undef;
163 if ($last_value->[0] eq 'STRING' &&
164 $last_value->[1] !~ /"$/
167 $last_value->[1] .= "\n" . $line;
171 $last_value->[1] .= $line;
[all …]
/dports/cad/nvc/nvc-r1.5.3/test/regress/
H A Dattr6.vhd13 assert x'last_value = x;
14 assert x'last_value = 5;
16 assert x'last_value = 5;
21 assert x'last_value = 0;
24 assert y'last_value = y;
27 assert y'last_value = ( '0', '0', '0', '0' );
30 assert y'last_value = ( '0', '0', '0', '0' );
33 assert y'last_value = ( '0', '1', '0', '0' );
/dports/audio/libsamplerate/libsamplerate-0.2.2/src/
H A Dsrc_linear.c38 float *last_value ; member
70 priv->last_value [ch] = data->data_in [ch] ; in linear_vari_process()
96 ((double) data->data_in [ch] - priv->last_value [ch])) ; in linear_vari_process()
185 priv->last_value = (float *) calloc (channels, sizeof (float)) ; in linear_data_new()
186 if (!priv->last_value) in linear_data_new()
241 memset (priv->last_value, 0, sizeof (priv->last_value [0]) * state->channels) ; in linear_reset()
269 if (!to_priv->last_value) in linear_copy()
275 memcpy (to_priv->last_value, from_priv->last_value, sizeof (float) * state->channels) ; in linear_copy()
290 if (linear->last_value) in linear_close()
292 free (linear->last_value) ; in linear_close()
[all …]
H A Dsrc_zoh.c36 float *last_value ; member
68 priv->last_value [ch] = data->data_in [ch] ; in zoh_vari_process()
93 { data->data_out [priv->out_gen] = priv->last_value [ch] ; in zoh_vari_process()
174 priv->last_value = (float *) calloc (channels, sizeof (float)) ; in zoh_data_new()
175 if (!priv->last_value) in zoh_data_new()
230 memset (priv->last_value, 0, sizeof (float) * state->channels) ; in zoh_reset()
258 if (!to_priv->last_value) in zoh_copy()
264 memcpy (to_priv->last_value, from_priv->last_value, sizeof (float) * state->channels) ; in zoh_copy()
279 if (zoh->last_value) in zoh_close()
281 free (zoh->last_value) ; in zoh_close()
[all …]
/dports/audio/cmt/cmt/src/
H A Dpinknoise.h42 DataValue last_value; variable
55 last_value = 0; in reset()
58 last_value += generators[i]; in reset()
76 last_value -= generators[index]; in getUnscaledValue()
78 last_value += generators[index]; in getUnscaledValue()
83 return last_value; in getUnscaledValue()
91 return last_value/n_generators; in getLastValue()
/dports/audio/lmms/lmms-1.2.2/plugins/LadspaEffect/cmt/src/
H A Dpinknoise.h42 DataValue last_value; variable
55 last_value = 0; in reset()
58 last_value += generators[i]; in reset()
76 last_value -= generators[index]; in getUnscaledValue()
78 last_value += generators[index]; in getUnscaledValue()
83 return last_value; in getUnscaledValue()
91 return last_value/n_generators; in getLastValue()
/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/main/
H A Dwin_first_last_value.result22 last_value(pk) over (order by pk),
24 last_value(pk) over (order by pk desc)
27 …irst_value(pk) over (order by pk) last_value(pk) over (order by pk) first_value(pk) over (order by…
42 last_value(pk) over (order by pk
46 last_value(pk) over (order by pk desc
68 last_value(pk) over (order by pk desc)
70 pk first_value(pk) over (order by pk desc) last_value(pk) over (order by pk desc)
84 last_value(b) over (partition by a order by pk) as lst_b,
86 last_value(c) over (partition by a order by pk) as lst_c,
88 last_value(d) over (partition by a order by pk) as lst_d,
[all …]
H A Dwin_first_last_value.test24 last_value(pk) over (order by pk),
26 last_value(pk) over (order by pk desc)
33 last_value(pk) over (order by pk
37 last_value(pk) over (order by pk desc
44 last_value(pk) over (order by pk desc)
49 last_value(b) over (partition by a order by pk) as lst_b,
51 last_value(c) over (partition by a order by pk) as lst_c,
53 last_value(d) over (partition by a order by pk) as lst_d,
55 last_value(e) over (partition by a order by pk) as lst_e
68 last_value(i) OVER (order by i rows between CURRENT ROW and 1 FOLLOWING) as last_1f,
[all …]
/dports/databases/mariadb104-server/mariadb-10.4.24/mysql-test/main/
H A Dwin_first_last_value.result22 last_value(pk) over (order by pk),
24 last_value(pk) over (order by pk desc)
27 …irst_value(pk) over (order by pk) last_value(pk) over (order by pk) first_value(pk) over (order by…
42 last_value(pk) over (order by pk
46 last_value(pk) over (order by pk desc
68 last_value(pk) over (order by pk desc)
70 pk first_value(pk) over (order by pk desc) last_value(pk) over (order by pk desc)
84 last_value(b) over (partition by a order by pk) as lst_b,
86 last_value(c) over (partition by a order by pk) as lst_c,
88 last_value(d) over (partition by a order by pk) as lst_d,
[all …]
/dports/databases/mariadb104-client/mariadb-10.4.24/mysql-test/main/
H A Dwin_first_last_value.result22 last_value(pk) over (order by pk),
24 last_value(pk) over (order by pk desc)
27 …irst_value(pk) over (order by pk) last_value(pk) over (order by pk) first_value(pk) over (order by…
42 last_value(pk) over (order by pk
46 last_value(pk) over (order by pk desc
68 last_value(pk) over (order by pk desc)
70 pk first_value(pk) over (order by pk desc) last_value(pk) over (order by pk desc)
84 last_value(b) over (partition by a order by pk) as lst_b,
86 last_value(c) over (partition by a order by pk) as lst_c,
88 last_value(d) over (partition by a order by pk) as lst_d,
[all …]
H A Dwin_first_last_value.test24 last_value(pk) over (order by pk),
26 last_value(pk) over (order by pk desc)
33 last_value(pk) over (order by pk
37 last_value(pk) over (order by pk desc
44 last_value(pk) over (order by pk desc)
49 last_value(b) over (partition by a order by pk) as lst_b,
51 last_value(c) over (partition by a order by pk) as lst_c,
53 last_value(d) over (partition by a order by pk) as lst_d,
55 last_value(e) over (partition by a order by pk) as lst_e
68 last_value(i) OVER (order by i rows between CURRENT ROW and 1 FOLLOWING) as last_1f,
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/mysql-test/main/
H A Dwin_first_last_value.result22 last_value(pk) over (order by pk),
24 last_value(pk) over (order by pk desc)
27 …irst_value(pk) over (order by pk) last_value(pk) over (order by pk) first_value(pk) over (order by…
42 last_value(pk) over (order by pk
46 last_value(pk) over (order by pk desc
68 last_value(pk) over (order by pk desc)
70 pk first_value(pk) over (order by pk desc) last_value(pk) over (order by pk desc)
84 last_value(b) over (partition by a order by pk) as lst_b,
86 last_value(c) over (partition by a order by pk) as lst_c,
88 last_value(d) over (partition by a order by pk) as lst_d,
[all …]
/dports/databases/mariadb103-server/mariadb-10.3.34/mysql-test/main/
H A Dwin_first_last_value.result22 last_value(pk) over (order by pk),
24 last_value(pk) over (order by pk desc)
27 …irst_value(pk) over (order by pk) last_value(pk) over (order by pk) first_value(pk) over (order by…
42 last_value(pk) over (order by pk
46 last_value(pk) over (order by pk desc
68 last_value(pk) over (order by pk desc)
70 pk first_value(pk) over (order by pk desc) last_value(pk) over (order by pk desc)
84 last_value(b) over (partition by a order by pk) as lst_b,
86 last_value(c) over (partition by a order by pk) as lst_c,
88 last_value(d) over (partition by a order by pk) as lst_d,
[all …]
/dports/databases/mariadb103-client/mariadb-10.3.34/mysql-test/main/
H A Dwin_first_last_value.result22 last_value(pk) over (order by pk),
24 last_value(pk) over (order by pk desc)
27 …irst_value(pk) over (order by pk) last_value(pk) over (order by pk) first_value(pk) over (order by…
42 last_value(pk) over (order by pk
46 last_value(pk) over (order by pk desc
68 last_value(pk) over (order by pk desc)
70 pk first_value(pk) over (order by pk desc) last_value(pk) over (order by pk desc)
84 last_value(b) over (partition by a order by pk) as lst_b,
86 last_value(c) over (partition by a order by pk) as lst_c,
88 last_value(d) over (partition by a order by pk) as lst_d,
[all …]
/dports/dns/knot3/knot-3.1.5/src/libknot/yparser/
H A Dypformat.c32 bool last_value) in format_item() argument
44 "\n" : (first_value && !last_value ? " [ " : " ")); in format_item()
67 last_value && !first_value ? " ]" : "", in format_item()
68 last_value ? "\n" : ","); in format_item()
85 bool last_value) in yp_format_key0() argument
88 first_value, last_value); in yp_format_key0()
117 bool last_value) in yp_format_key1() argument
120 first_value, last_value); in yp_format_key1()
/dports/dns/knot3-lib/knot-3.1.5/src/libknot/yparser/
H A Dypformat.c32 bool last_value) in format_item() argument
44 "\n" : (first_value && !last_value ? " [ " : " ")); in format_item()
67 last_value && !first_value ? " ]" : "", in format_item()
68 last_value ? "\n" : ","); in format_item()
85 bool last_value) in yp_format_key0() argument
88 first_value, last_value); in yp_format_key0()
117 bool last_value) in yp_format_key1() argument
120 first_value, last_value); in yp_format_key1()

12345678910>>...75