Home
last modified time | relevance | path

Searched refs:sustained (Results 1 – 25 of 1283) sorted by relevance

12345678910>>...52

/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/level_zero/tools/test/unit_tests/sources/sysman/power/windows/
H A Dtest_zes_sysman_power.cpp178 zes_power_sustained_limit_t sustained; in TEST_F() local
185 EXPECT_TRUE(sustained.enabled); in TEST_F()
186 EXPECT_EQ(sustained.power, pKmdSysManager->mockPowerLimit1); in TEST_F()
202 zes_power_sustained_limit_t sustained; in TEST_F() local
210 sustained.power += 1000; in TEST_F()
212 result = zesPowerSetLimits(handle, &sustained, &burst, &peak); in TEST_F()
261 zes_power_sustained_limit_t sustained; in TEST_F() local
274 sustained.power += powerIncrement; in TEST_F()
275 sustained.interval += timeIncrement; in TEST_F()
292 EXPECT_EQ(newSustained.power, sustained.power); in TEST_F()
[all …]
/dports/audio/ardour6/Ardour-6.8.0/gtk2_ardour/
H A Dpianokeyboard.cc157 if (_notes[note].pressed || _notes[note].sustained) { in draw_note()
222 _notes[key].sustained = true; in press_key()
224 _notes[key].sustained = false; in press_key()
230 _notes[_last_key].sustained = false; in press_key()
255 _notes[key].sustained = true; in release_key()
260 if (_notes[key].sustained) { in release_key()
272 if (_notes[i].pressed && !_notes[i].sustained) { in stop_unsustained_notes()
284 if (_notes[i].sustained) { in stop_sustained_notes()
285 _notes[i].sustained = false; in stop_sustained_notes()
809 if (_notes[note].pressed || _notes[note].sustained) { in set_note_off()
[all …]
H A Dpianokeyboard.h96 , sustained (false) in PKNote()
104 bool sustained; /* true if note is sustained. */ member
/dports/audio/zmusic/ZMusic-1.1.8/thirdparty/oplsynth/
H A Dmusicblock.cpp54 ch->sustained = false; in releaseVoice()
75 uint32_t voice_value = voices[i].timestamp + (voices[i].sustained ? (1 << 31) : 0); in findFreeVoice()
76 if ((voices[i].index == ~0u || voices[i].sustained) && (voice_value < min_value)) in findFreeVoice()
250 voices[i].sustained = true; in noteOff()
314 if (voices[i].index == id && voices[i].sustained) in changeSustain()
375 voices[i].sustained = true; in notesOff()
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/tides/
H A Dgenerator.cc382 bool sustained = mode_ == GENERATOR_MODE_AR in ProcessAudioRate() local
386 if (sustained) { in ProcessAudioRate()
443 if (running_ && !sustained) { in ProcessAudioRate()
447 if (!running_ && !sustained) { in ProcessAudioRate()
556 bool sustained = mode_ == GENERATOR_MODE_AR in ProcessControlRate() local
560 if (sustained) { in ProcessControlRate()
588 if (phase >= adjusted_end_of_attack || !running_ || sustained) { in ProcessControlRate()
604 if ((sustained || end_of_attack == 0) && (triggered || looped)) { in ProcessControlRate()
609 if (running_ && !sustained) { in ProcessControlRate()
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/parasites/peaks/modulations/
H A Dmultistage_envelope.cc70 bool sustained = sustain_point_ && segment_ == sustain_point_ && in ProcessSingleSample() local
74 sustained || done ? 0 : lut_env_increments[time_[segment_] >> 8]; in ProcessSingleSample()
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/peaks/modulations/
H A Dmultistage_envelope.cc73 bool sustained = sustain_point_ && segment_ == sustain_point_ && in Process() local
77 sustained || done ? 0 : lut_env_increments[time_[segment_] >> 8]; in Process()
/dports/audio/jack-keyboard/jack-keyboard-2.7.2/src/
H A Dpianokeyboard.c95 pressed = (int)(pk->notes[note].pressed || pk->notes[note].sustained); in draw_note()
137 pk->notes[key].sustained = 1; in press_key()
139 pk->notes[key].sustained = 0; in press_key()
162 pk->notes[key].sustained = 1; in release_key()
166 if (pk->notes[key].sustained) in release_key()
181 if (pk->notes[i].pressed && !pk->notes[i].sustained) { in stop_unsustained_notes()
195 if (pk->notes[i].sustained) { in stop_sustained_notes()
197 pk->notes[i].sustained = 0; in stop_sustained_notes()
631 if (pk->notes[note].pressed || pk->notes[note].sustained) { in piano_keyboard_set_note_off()
633 pk->notes[note].sustained = 0; in piano_keyboard_set_note_off()
/dports/audio/zynaddsubfx/zynaddsubfx-3.0.6-rc5/src/Containers/
H A DNotePool.cpp65 bool NotePool::NoteDescriptor::sustained(void) const in sustained() function in zyn::NotePool::NoteDescriptor
278 if(desc.sustained()) in makeUnsustainable()
314 if(desc.playing() == false && desc.sustained() == false && desc.latched() == false) in getRunningNotes()
351 if(tk.dying() || tk.sustained()) in enforceKeyLimit()
393 } else if (nd.sustained()) { in limitVoice()
460 if(d.playing() || d.sustained() || d.latched()) { in releasePlayingNotes()
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/rings/dsp/
H A Dstring_synth_envelope.h76 bool sustained = sustain_point_ && segment_ == sustain_point_ && in Process() local
80 if (!sustained && !done) { in Process()
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/parasites/rings/dsp/
H A Dstring_synth_envelope.h76 bool sustained = sustain_point_ && segment_ == sustain_point_ && in Process() local
80 if (!sustained && !done) { in Process()
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/streams/
H A Denvelope.cc103 bool sustained = sustain_point_ && segment_ == sustain_point_ && gate_; in Process() local
104 uint32_t increment = sustained || done ? 0 : lut_env_increments[time_[segment_] >> 8]; in Process()
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/parasites/streams/
H A Denvelope.cc103 bool sustained = sustain_point_ && segment_ == sustain_point_ && gate_; in Process() local
104 uint32_t increment = sustained || done ? 0 : lut_env_increments[time_[segment_] >> 8]; in Process()
/dports/science/jstrack/jstrack/tracker/storms/old/2015/
H A Dida.adv34 Maximum sustained winds have increased to near 40 mph (65 km/h) with
96 Maximum sustained winds remain near 40 mph (65 km/h) with higher
159 Maximum sustained winds remain near 40 mph (65 km/h) with higher
223 Maximum sustained winds remain near 40 mph (65 km/h) with higher
861 Maximum sustained winds remain near 45 mph (75 km/h) with higher
924 Maximum sustained winds remain near 45 mph (75 km/h) with higher
987 Maximum sustained winds remain near 45 mph (75 km/h) with higher
1662 Maximum sustained winds are near 30 mph (45 km/h) with higher
1902 Maximum sustained winds remain near 35 mph (55 km/h) with higher
1962 Maximum sustained winds remain near 35 mph (55 km/h) with higher
[all …]
H A Dnine.adv36 Maximum sustained winds are near 30 mph (45 km/h) with higher gusts.
97 Maximum sustained winds are near 30 mph (45 km/h) with higher gusts.
159 Maximum sustained winds are near 30 mph (45 km/h) with higher gusts.
220 Maximum sustained winds are near 30 mph (45 km/h) with higher gusts.
282 Maximum sustained winds are near 35 mph (55 km/h) with higher gusts.
343 Maximum sustained winds are near 35 mph (55 km/h) with higher gusts.
404 Maximum sustained winds are near 30 mph (45 km/h) with higher gusts.
464 Maximum sustained winds are near 30 mph (45 km/h) with higher gusts.
524 Maximum sustained winds are near 30 mph (45 km/h) with higher gusts.
585 Maximum sustained winds are near 30 mph (45 km/h) with higher gusts.
[all …]
H A Dgrace.adv34 Maximum sustained winds have increased to near 40 mph (65 km/h) with
99 Maximum sustained winds have increased to near 40 mph (65 km/h) with
161 Maximum sustained winds are near 40 mph (65 km/h) with higher gusts.
223 Maximum sustained winds have increased to near 45 mph (75 km/h)
285 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
347 Maximum sustained winds have increased to near 50 mph (85 km/h) with
410 Maximum sustained winds are near 50 mph (85 km/h) with higher gusts.
472 Maximum sustained winds are near 50 mph (85 km/h) with higher gusts.
535 Maximum sustained winds have decreased to near 45 mph (75 km/h) with
597 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
[all …]
/dports/science/jstrack/jstrack/tracker/storms/old/2017/
H A Dlee.adv34 Maximum sustained winds have increased to are near 40 mph (65 km/h)
97 Maximum sustained winds are near 40 mph (65 km/h) with higher gusts.
284 Maximum sustained winds have decreased to near 35 mph (55 km/h)
465 Maximum sustained winds remain near 35 mph (55 km/h) with higher
525 Maximum sustained winds remain near 35 mph (55 km/h) with higher
959 Maximum sustained winds have increased to near 50 mph (85 km/h)
1152 Maximum sustained winds are near 90 mph (150 km/h) with higher
1217 Maximum sustained winds are near 90 mph (150 km/h) with higher
1412 Maximum sustained winds are near 90 mph (150 km/h) with higher
1543 Maximum sustained winds are near 90 mph (150 km/h) with higher
[all …]
H A Dfourteen.adv34 Maximum sustained winds are near 35 mph (55 km/h) with higher gusts.
96 Maximum sustained winds are near 35 mph (55 km/h) with higher gusts.
156 Maximum sustained winds are near 35 mph (55 km/h) with higher gusts.
216 Maximum sustained winds are near 35 mph (55 km/h) with higher gusts.
276 Maximum sustained winds are near 35 mph (55 km/h) with higher gusts.
334 Maximum sustained winds remain near 35 mph (55 km/h) with higher
/dports/science/jstrack/jstrack/tracker/storms/old/2016/
H A Dian.adv35 Maximum sustained winds are near 40 mph (65 km/h) with higher gusts.
99 Maximum sustained winds are near 40 mph (65 km/h) with higher gusts.
162 Maximum sustained winds have increased to near 45 mph (75 km/h) with
225 Maximum sustained winds remain near 45 mph (75 km/h) with higher
289 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
355 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
419 Maximum sustained winds remain near 45 mph (75 km/h) with higher
484 Maximum sustained winds have increased to near 50 mph (85 km/h) with
548 Maximum sustained winds remain near 50 mph (85 km/h) with higher
611 Maximum sustained winds are near 50 mph (85 km/h) with higher gusts.
[all …]
H A Dfiona.adv35 Maximum sustained winds have increased to near 40 mph (65 km/h) with
98 Maximum sustained winds remain near 40 mph (65 km/h) with higher
160 Maximum sustained winds have increased to near 45 mph (75 km/h) with
224 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
287 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
667 Maximum sustained winds remain near 40 mph (65 km/h) with higher
730 Maximum sustained winds remain near 40 mph (65 km/h) with higher
793 Maximum sustained winds remain near 40 mph (65 km/h) with higher
857 Satellite wind data indicate that maximum sustained winds are near
920 Maximum sustained winds have decreased to near 45 mph (75 km/h)
[all …]
H A Dlisa.adv34 Maximum sustained winds have increased to near 40 mph (65 km/h) with
96 Maximum sustained winds have increased near 45 mph (75 km/h) with
158 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
220 Maximum sustained winds have increased to near 50 mph (85 km/h) with
283 Maximum sustained winds are near 50 mph (85 km/h) with higher gusts.
346 Maximum sustained winds have decreased to near 45 mph (75 km/h) with
409 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
472 Maximum sustained winds remain near 45 mph (75 km/h) with higher
534 Maximum sustained winds remain near 45 mph (75 km/h) with higher
721 Maximum sustained winds have decreased to near 45 mph (75 km/h)
[all …]
/dports/science/jstrack/jstrack/tracker/storms/
H A Dchantal.adv35 Maximum sustained winds are near 40 mph (65 km/h) with higher gusts.
97 Maximum sustained winds are near 40 mph (65 km/h) with higher gusts.
161 Maximum sustained winds are near 40 mph (65 km/h) with higher gusts.
224 Maximum sustained winds are near 40 mph (65 km/h) with higher gusts.
289 Maximum sustained winds have decreased to near 35 mph (55 km/h) with
349 Maximum sustained winds are near 35 mph (55 km/h) with higher gusts.
409 Maximum sustained winds are near 35 mph (55 km/h) with higher gusts.
469 Maximum sustained winds are near 35 mph (55 km/h) with higher gusts.
528 Maximum sustained winds remain near 35 mph (55 km/h) with higher
588 Maximum sustained winds have decreased to near 30 mph (45 km/h) with
[all …]
H A Dgabrielle.adv36 Maximum sustained winds are near 40 mph (65 km/h) with higher gusts.
99 Maximum sustained winds have increased to near 50 mph (85 km/h) with
163 Maximum sustained winds are near 50 mph (85 km/h) with higher gusts.
294 Maximum sustained winds remain near 50 mph (85 km/h) with higher
553 Satellite-derived winds indicate that maximum sustained winds have
1003 Maximum sustained winds remain near 50 mph (85 km/h) with higher
1197 Maximum sustained winds are near 65 mph (100 km/h) with higher
1263 Maximum sustained winds are near 65 mph (100 km/h) with higher
1397 Maximum sustained winds are near 50 mph (85 km/h) with higher
1462 Maximum sustained winds are near 50 mph (85 km/h) with higher
[all …]
/dports/science/jstrack/jstrack/tracker/storms/old/2018/
H A Djoyce.adv32 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
97 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
162 Maximum sustained winds are near 45 mph (75 km/h) with higher gusts.
548 Maximum sustained winds have increased to near 45 mph (75 km/h)
612 Maximum sustained winds have increased to near 50 mph (85 km/h)
676 Maximum sustained winds remain near 50 mph (85 km/h) with higher
804 Maximum sustained winds remain near 45 mph (75 km/h) with higher
1056 Maximum sustained winds remain near 35 mph (55 km/h) with higher
1298 Maximum sustained winds remain near 35 mph (55 km/h) with higher
1359 Maximum sustained winds remain near 35 mph (55 km/h) with higher
[all …]
/dports/audio/infamous-plugins-lv2/infamousPlugins-0.3.0-7-g778e591/src/casynth/
H A Dcasynth.c37 synth->sustained[i] = 0; in init_casynth()
283 synth->sustained[synth->nsustained++] = num; in run_casynth()
306 synth->sustained[synth->nsustained++] = num; in run_casynth()
329 if(synth->note[synth->sustained[i]].sus) in run_casynth()
331 end_note(&(synth->note[synth->sustained[i]]),t); in run_casynth()

12345678910>>...52