Home
last modified time | relevance | path

Searched refs:velocity (Results 1 – 24 of 24) sorted by relevance

/linux-3.4.99/sound/oss/
Dmidi_synth.c283 midi_synth_kill_note(int dev, int channel, int note, int velocity) in midi_synth_kill_note() argument
292 if (velocity < 0) in midi_synth_kill_note()
293 velocity = 0; in midi_synth_kill_note()
294 if (velocity > 127) in midi_synth_kill_note()
295 velocity = 127; in midi_synth_kill_note()
302 if (chn == channel && ((msg == 0x90 && velocity == 64) || msg == 0x80)) in midi_synth_kill_note()
319 midi_outc(orig_dev, velocity); in midi_synth_kill_note()
322 if (velocity == 64) in midi_synth_kill_note()
341 midi_outc(orig_dev, velocity); in midi_synth_kill_note()
373 midi_synth_start_note(int dev, int channel, int note, int velocity) in midi_synth_start_note() argument
[all …]
Dmidi_synth.h3 int midi_synth_kill_note (int dev, int channel, int note, int velocity);
Ddev_table.h268 int (*kill_note) (int dev, int voice, int note, int velocity);
269 int (*start_note) (int dev, int voice, int note, int velocity);
Dopl3.c85 static int opl3_kill_note(int dev, int voice, int note, int velocity);
268 static int opl3_kill_note (int devno, int voice, int note, int velocity) in opl3_kill_note() argument
/linux-3.4.99/drivers/hid/
Dhid-prodikeys.c53 unsigned char velocity; member
219 unsigned char status, unsigned char note, unsigned char velocity) in pcmidi_send_note() argument
226 buffer[2] = velocity; in pcmidi_send_note()
247 pcmidi_send_note(pms->pm, pms->status, pms->note, pms->velocity); in pcmidi_sustained_note_release()
346 unsigned char status, note, velocity; in pcmidi_handle_report3() local
351 velocity = data[j*2+2]; in pcmidi_handle_report3()
357 if (0 == velocity) in pcmidi_handle_report3()
358 velocity = 1; /* force note on */ in pcmidi_handle_report3()
370 pms->velocity = velocity; in pcmidi_handle_report3()
381 pcmidi_send_note(pm, status, note, velocity); in pcmidi_handle_report3()
/linux-3.4.99/drivers/net/ethernet/via/
DMakefile6 obj-$(CONFIG_VIA_VELOCITY) += via-velocity.o
DKconfig57 will be called via-velocity.
/linux-3.4.99/sound/synth/emux/
Demux_synth.c114 vp->velocity = vel; in snd_emux_note_on()
259 vp->velocity = vel; in snd_emux_key_press()
764 LIMITMAX(vp->velocity, 127); in calc_volume()
769 vol = (vp->velocity * main_vol * expression_vol) / (127*127); in calc_volume()
781 vol = voltab1[main_vol] + voltab2[vp->velocity]; in calc_volume()
807 if (vp->velocity < 70) in calc_volume()
810 atten = vp->velocity; in calc_volume()
/linux-3.4.99/sound/core/seq/
Dseq_midi_emul.c116 if (ev->type == SNDRV_SEQ_EVENT_NOTEON && ev->data.note.velocity == 0) in snd_midi_process_event()
135 ops->note_on(drv, ev->data.note.note, ev->data.note.velocity, chan); in snd_midi_process_event()
141 note_off(ops, drv, chan, ev->data.note.note, ev->data.note.velocity); in snd_midi_process_event()
145 ops->key_press(drv, ev->data.note.note, ev->data.note.velocity, chan); in snd_midi_process_event()
Dseq_midi_event.c316 ev->data.note.velocity = dev->buf[2]; in note_event()
417 buf[1] = ev->data.note.velocity & 0x7f; in note_decode()
Dseq_clientmgr.c879 ev->data.note.velocity = ev->data.note.off_velocity; in snd_seq_dispatch_event()
/linux-3.4.99/include/sound/
Demux_synth.h181 unsigned char velocity; /* Velocity of current note */ member
Dasequencer.h200 unsigned char velocity; member
/linux-3.4.99/sound/drivers/opl4/
Dopl4_local.h164 int velocity; member
Dopl4_synth.c377 att += snd_opl4_volume_table[voice->velocity]; in snd_opl4_update_volume()
511 voice[i]->velocity = vel & 0x7f; in snd_opl4_note_on()
/linux-3.4.99/Documentation/input/
Datarikbd.txt149 velocity joystick cursor.
439 ; horizontal velocity breakpoint is reached
441 ; vertical velocity breakpoint is reached
459 every Vn tenths of seconds. This provides a velocity (auto-repeat) breakpoint
461 Note that by setting RX and/or Ry to zero, the velocity feature can be
Diforce-protocol.txt68 Val 41 Friction (Force = f(velocity)) and Inertia (Force = f(acceleration))
/linux-3.4.99/sound/core/seq/oss/
Dseq_oss_event.c381 ev->data.note.velocity = vel; in set_note_event()
Dseq_oss_midi.c584 ossev.v.parm = ev->data.note.velocity; in send_synth_event()
/linux-3.4.99/sound/pci/asihpi/
Dhpi.h1250 u16 hpi_outstream_set_velocity(u32 h_outstream, short velocity);
Dhpifunc.c620 u16 hpi_outstream_set_velocity(u32 h_outstream, short velocity) in hpi_outstream_set_velocity() argument
629 hm.u.d.u.velocity = velocity; in hpi_outstream_set_velocity()
Dhpi_internal.h727 u16 velocity; member
/linux-3.4.99/drivers/staging/iio/Documentation/
Dsysfs-bus-iio150 Angular velocity about axis x, y or z (may be arbitrarily
/linux-3.4.99/
DMAINTAINERS7299 F: drivers/net/ethernet/via/via-velocity.*