Home
last modified time | relevance | path

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

12

/OK3568_Linux_fs/external/xserver/dix/
H A Dptrveloc.c65 SimpleSmoothProfile(DeviceIntPtr dev, DeviceVelocityPtr vel, double velocity,
694 double velocity; in ProcessVelocityData2D() local
696 vel->last_velocity = vel->velocity; in ProcessVelocityData2D()
700 velocity = QueryTrackers(vel, time); in ProcessVelocityData2D()
702 DebugAccelF("velocity is %f\n", velocity); in ProcessVelocityData2D()
704 vel->velocity = velocity; in ProcessVelocityData2D()
705 return velocity == 0; in ProcessVelocityData2D()
754 double velocity, double threshold, double acc) in BasicComputeAcceleration() argument
759 result = vel->Profile(dev, vel, velocity, threshold, acc); in BasicComputeAcceleration()
778 if (vel->velocity <= 0) { in ComputeAcceleration()
[all …]
/OK3568_Linux_fs/kernel/drivers/hid/
H A Dhid-prodikeys.c48 unsigned char velocity; member
214 unsigned char status, unsigned char note, unsigned char velocity) in pcmidi_send_note() argument
221 buffer[2] = velocity; in pcmidi_send_note()
242 pcmidi_send_note(pms->pm, pms->status, pms->note, pms->velocity); in pcmidi_sustained_note_release()
340 unsigned char status, note, velocity; in pcmidi_handle_report3() local
345 velocity = data[j*2+2]; in pcmidi_handle_report3()
351 if (0 == velocity) in pcmidi_handle_report3()
352 velocity = 1; /* force note on */ in pcmidi_handle_report3()
364 pms->velocity = velocity; in pcmidi_handle_report3()
375 pcmidi_send_note(pm, status, note, velocity); in pcmidi_handle_report3()
/OK3568_Linux_fs/external/xserver/include/
H A Dptrveloc.h52 double velocity, double threshold, double accelCoeff);
72 double velocity; /* velocity as guessed by algorithm */ member
114 double velocity, double threshold, double acc);
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/
H A Dvia-velocity.txt4 - compatible : Should be "via,velocity-vt6110"
16 compatible = "via,velocity-vt6110";
/OK3568_Linux_fs/kernel/sound/synth/emux/
H A Demux_synth.c100 vp->velocity = vel; in snd_emux_note_on()
243 vp->velocity = vel; in snd_emux_key_press()
748 LIMITMAX(vp->velocity, 127); in calc_volume()
753 vol = (vp->velocity * main_vol * expression_vol) / (127*127); in calc_volume()
765 vol = voltab1[main_vol] + voltab2[vp->velocity]; in calc_volume()
791 if (vp->velocity < 70) in calc_volume()
794 atten = vp->velocity; in calc_volume()
/OK3568_Linux_fs/app/forlinx/forlinx_qt/qopenglwidget/
H A Dbubble.cpp55 Bubble::Bubble(const QPointF &position, qreal radius, const QPointF &velocity) in Bubble() argument
56 : position(position), vel(velocity), radius(radius) in Bubble()
H A Dbubble.h65 Bubble(const QPointF &position, qreal radius, const QPointF &velocity); in QT_FORWARD_DECLARE_CLASS()
H A Dglwidget.cpp427 QPointF velocity(width()*0.0175*(-0.5 + QRandomGenerator::global()->bounded(1.0)), in createBubbles() local
430 m_bubbles.append(new Bubble(position, radius, velocity)); in createBubbles()
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/opengl/
H A Dbubble.cpp55 Bubble::Bubble(const QPointF &position, qreal radius, const QPointF &velocity) in Bubble() argument
56 : position(position), vel(velocity), radius(radius) in Bubble()
H A Dbubble.h65 Bubble(const QPointF &position, qreal radius, const QPointF &velocity); in QT_FORWARD_DECLARE_CLASS()
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/qopenglwidget/
H A Dbubble.cpp55 Bubble::Bubble(const QPointF &position, qreal radius, const QPointF &velocity) in Bubble() argument
56 : position(position), vel(velocity), radius(radius) in Bubble()
H A Dbubble.h65 Bubble(const QPointF &position, qreal radius, const QPointF &velocity); in QT_FORWARD_DECLARE_CLASS()
H A Dglwidget.cpp427 QPointF velocity(width()*0.0175*(-0.5 + QRandomGenerator::global()->bounded(1.0)), in createBubbles() local
430 m_bubbles.append(new Bubble(position, radius, velocity)); in createBubbles()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/via/
H A DMakefile7 obj-$(CONFIG_VIA_VELOCITY) += via-velocity.o
H A DKconfig56 will be called via-velocity.
/OK3568_Linux_fs/kernel/sound/core/seq/
H A Dseq_midi_emul.c105 if (ev->type == SNDRV_SEQ_EVENT_NOTEON && ev->data.note.velocity == 0) in snd_midi_process_event()
124 ops->note_on(drv, ev->data.note.note, ev->data.note.velocity, chan); in snd_midi_process_event()
130 note_off(ops, drv, chan, ev->data.note.note, ev->data.note.velocity); in snd_midi_process_event()
134 ops->key_press(drv, ev->data.note.note, ev->data.note.velocity, chan); in snd_midi_process_event()
H A Dseq_midi_event.c249 ev->data.note.velocity = dev->buf[2]; in note_event()
351 buf[1] = ev->data.note.velocity & 0x7f; in note_decode()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dtransform.cpp268 double velocity = 1.2; in flyTo() local
269 if (animation.velocity) { in flyTo()
270 velocity = *animation.velocity / rho; in flyTo()
272 … duration = std::chrono::duration_cast<Duration>(std::chrono::duration<double>(S / velocity)); in flyTo()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/map/
H A Dcamera.hpp64 optional<double> velocity; member
/OK3568_Linux_fs/kernel/sound/drivers/opl4/
H A Dopl4_synth.c377 att += snd_opl4_volume_table[voice->velocity]; in snd_opl4_update_volume()
510 voice[i]->velocity = vel & 0x7f; in snd_opl4_note_on()
H A Dopl4_local.h164 int velocity; member
/OK3568_Linux_fs/kernel/include/sound/
H A Demux_synth.h166 unsigned char velocity; /* Velocity of current note */ member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/sound/
H A Dasequencer.h198 unsigned char velocity; member
/OK3568_Linux_fs/kernel/include/uapi/sound/
H A Dasequencer.h198 unsigned char velocity; member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sound/
H A Dasequencer.h198 unsigned char velocity; member

12