Home
last modified time | relevance | path

Searched refs:vel (Results 1 – 25 of 29) sorted by relevance

12

/OK3568_Linux_fs/external/xserver/dix/
H A Dptrveloc.c65 SimpleSmoothProfile(DeviceIntPtr dev, DeviceVelocityPtr vel, double velocity,
68 GetAccelerationProfile(DeviceVelocityPtr vel, int profile_num);
96 InitVelocityData(DeviceVelocityPtr vel) in InitVelocityData() argument
98 memset(vel, 0, sizeof(DeviceVelocityRec)); in InitVelocityData()
100 vel->corr_mul = 10.0; /* dots per 10 milisecond should be usable */ in InitVelocityData()
101 vel->const_acceleration = 1.0; /* no acceleration/deceleration */ in InitVelocityData()
102 vel->reset_time = 300; in InitVelocityData()
103 vel->use_softening = 1; in InitVelocityData()
104 vel->min_acceleration = 1.0; /* don't decelerate */ in InitVelocityData()
105 vel->max_rel_diff = 0.2; in InitVelocityData()
[all …]
/OK3568_Linux_fs/external/xserver/include/
H A Dptrveloc.h51 (DeviceIntPtr dev, struct _DeviceVelocityRec * vel,
98 DeviceVelocityPtr vel; member
104 InitVelocityData(DeviceVelocityPtr vel);
107 InitTrackers(DeviceVelocityPtr vel, int ntracker);
110 ProcessVelocityData2D(DeviceVelocityPtr vel, double dx, double dy, int time);
113 BasicComputeAcceleration(DeviceIntPtr dev, DeviceVelocityPtr vel,
117 FreeVelocityData(DeviceVelocityPtr vel);
120 SetAccelerationProfile(DeviceVelocityPtr vel, int profile_num);
126 SetDeviceSpecificAccelerationProfile(DeviceVelocityPtr vel,
/OK3568_Linux_fs/kernel/sound/core/seq/oss/
H A Dseq_oss_event.c28 static int note_on_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd…
29 static int note_off_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct sn…
30 static int set_note_event(struct seq_oss_devinfo *dp, int dev, int type, int ch, int note, int vel,…
99 return note_off_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev); in old_event()
102 return note_on_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev); in old_event()
274 note_on_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd_seq_event … in note_on_event() argument
286 return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEON, ch, note, vel, ev); in note_on_event()
297 if (info->ch[ch].vel) in note_on_event()
303 info->ch[ch].vel = vel; in note_on_event()
304 return set_note_event(dp, dev, type, ch, info->ch[ch].note, vel, ev); in note_on_event()
[all …]
H A Dseq_oss_event.h31 unsigned char vel; member
H A Dseq_oss_device.h49 int note, vel; member
/OK3568_Linux_fs/app/forlinx/forlinx_qt/qopenglwidget/
H A Dbubble.cpp56 : position(position), vel(velocity), radius(radius) in Bubble()
122 position += vel; in move()
130 vel.setX(-vel.x()); in move()
133 vel.setX(-vel.x()); in move()
138 vel.setY(-vel.y()); in move()
141 vel.setY(-vel.y()); in move()
H A Dbubble.h79 QPointF vel; in QT_FORWARD_DECLARE_CLASS() local
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/opengl/
H A Dbubble.cpp56 : position(position), vel(velocity), radius(radius) in Bubble()
122 position += vel; in move()
130 vel.setX(-vel.x()); in move()
133 vel.setX(-vel.x()); in move()
138 vel.setY(-vel.y()); in move()
141 vel.setY(-vel.y()); in move()
H A Dbubble.h79 QPointF vel; in QT_FORWARD_DECLARE_CLASS() local
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/qopenglwidget/
H A Dbubble.cpp56 : position(position), vel(velocity), radius(radius) in Bubble()
122 position += vel; in move()
130 vel.setX(-vel.x()); in move()
133 vel.setX(-vel.x()); in move()
138 vel.setY(-vel.y()); in move()
141 vel.setY(-vel.y()); in move()
H A Dbubble.h79 QPointF vel; in QT_FORWARD_DECLARE_CLASS() local
/OK3568_Linux_fs/kernel/sound/drivers/opl3/
H A Dopl3_voice.h18 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan);
19 void snd_opl3_note_off(void *p, int note, int vel, struct snd_midi_channel *chan);
20 void snd_opl3_key_press(void *p, int note, int vel, struct snd_midi_channel *chan);
26 void snd_opl3_calc_volume(unsigned char *reg, int vel, struct snd_midi_channel *chan);
31 void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int vel, int on_off, struct snd_midi_cha…
H A Dopl3_midi.c14 static void snd_opl3_note_off_unsafe(void *p, int note, int vel,
46 void snd_opl3_calc_volume(unsigned char *volbyte, int vel, in snd_opl3_calc_volume() argument
52 volume = (vel * chan->gm_volume * chan->gm_expression) / (127*127); in snd_opl3_calc_volume()
276 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_opl3_note_on() argument
308 chan->number, chan->midi_program, note, vel); in snd_opl3_note_on()
335 snd_opl3_drum_switch(opl3, note, vel, 1, chan); in snd_opl3_note_on()
442 snd_opl3_calc_volume(&vol_op[3], vel, chan); in snd_opl3_note_on()
445 snd_opl3_calc_volume(&vol_op[2], vel, chan); in snd_opl3_note_on()
448 snd_opl3_calc_volume(&vol_op[0], vel, chan); in snd_opl3_note_on()
451 snd_opl3_calc_volume(&vol_op[1], vel, chan); in snd_opl3_note_on()
[all …]
H A Dopl3_drums.c122 int vel, struct snd_midi_channel *chan) in snd_opl3_drum_vol_set() argument
131 snd_opl3_calc_volume(&reg_val, vel, chan); in snd_opl3_drum_vol_set()
169 void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int vel, int on_off, in snd_opl3_drum_switch() argument
203 snd_opl3_drum_vol_set(opl3, drum_voice, vel, chan); in snd_opl3_drum_switch()
/OK3568_Linux_fs/kernel/sound/synth/emux/
H A Demux_voice.h34 void snd_emux_note_on(void *p, int note, int vel, struct snd_midi_channel *chan);
35 void snd_emux_note_off(void *p, int note, int vel, struct snd_midi_channel *chan);
36 void snd_emux_key_press(void *p, int note, int vel, struct snd_midi_channel *chan);
H A Demux_synth.c27 int *notep, int vel, struct snd_midi_channel *chan,
46 snd_emux_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_emux_note_on() argument
64 nvoices = get_zone(emu, port, &note, vel, chan, table); in snd_emux_note_on()
100 vp->velocity = vel; in snd_emux_note_on()
145 snd_emux_note_off(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_emux_note_off() argument
222 snd_emux_key_press(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_emux_key_press() argument
243 vp->velocity = vel; in snd_emux_key_press()
890 int *notep, int vel, struct snd_midi_channel *chan, in get_zone() argument
906 return snd_soundfont_search_zone(emu->sflist, notep, vel, preset, bank, in get_zone()
H A Dsoundfont.c55 static int search_zones(struct snd_sf_list *sflist, int *notep, int vel,
1221 snd_soundfont_search_zone(struct snd_sf_list *sflist, int *notep, int vel, in snd_soundfont_search_zone() argument
1238 nvoices = search_zones(sflist, notep, vel, preset, bank, in snd_soundfont_search_zone()
1242 nvoices = search_zones(sflist, notep, vel, in snd_soundfont_search_zone()
1274 search_zones(struct snd_sf_list *sflist, int *notep, int vel, in search_zones() argument
1285 vel >= zp->v.vellow && vel <= zp->v.velhigh) { in search_zones()
1296 nvoices = search_zones(sflist, &key, vel, in search_zones()
/OK3568_Linux_fs/kernel/include/sound/
H A Dseq_midi_emul.h69 void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
70 …void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release …
71 void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
H A Dsoundfont.h102 int snd_soundfont_search_zone(struct snd_sf_list *sflist, int *notep, int vel,
/OK3568_Linux_fs/kernel/drivers/staging/iio/resolver/
H A Dad2s1210.c469 s16 vel; in ad2s1210_read_raw() local
503 vel = be16_to_cpup((__be16 *)st->rx); in ad2s1210_read_raw()
504 vel >>= 16 - st->resolution; in ad2s1210_read_raw()
505 if (vel & 0x8000) { in ad2s1210_read_raw()
507 vel |= negative; in ad2s1210_read_raw()
509 *val = vel; in ad2s1210_read_raw()
/OK3568_Linux_fs/kernel/sound/drivers/opl4/
H A Dopl4_local.h225 void snd_opl4_note_on(void *p, int note, int vel, struct snd_midi_channel *chan);
226 void snd_opl4_note_off(void *p, int note, int vel, struct snd_midi_channel *chan);
H A Dopl4_synth.c482 void snd_opl4_note_on(void *private_data, int note, int vel, struct snd_midi_channel *chan) in snd_opl4_note_on() argument
510 voice[i]->velocity = vel & 0x7f; in snd_opl4_note_on()
563 void snd_opl4_note_off(void *private_data, int note, int vel, struct snd_midi_channel *chan) in snd_opl4_note_off() argument
/OK3568_Linux_fs/kernel/tools/power/cpupower/po/
H A Dpt.po228 msgstr "Não foi possível contar o número de CPUs (%s: %s), assumindo 1\n"
399 " através de leitura no hardware (disponível somente "
483 " -m, --human saída legível para humanos para os parâmetros -f, -w, "
538 "não foi possível analisar o CPU % já que o mesmo parece não estar presente\n"
581 " nível de usuário esteja disponível e carregado\n"
637 "- O regulador que você requesitou está disponível e foi \"modprobed\"?\n"
639 "- Tentando setar uma frequência específica, mas o regulador em nível de "
640 "usuário não está disponível,\n"
643 " ou porque o regulador em nível de usuário não foi carregado?\n"
/OK3568_Linux_fs/kernel/sound/core/seq/
H A Dseq_midi_emul.c35 int note, int vel);
237 int note, int vel) in note_off() argument
249 ops->note_off(drv, note, vel, chan); in note_off()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqquickgeomapgesturearea.cpp1059 qreal vel = distanceBetweenTouchPoints(pos, m_lastPos) / elapsed; in updateFlickParameters() local
1061 m_flickVector *= qBound<qreal>(-m_flick.m_maxVelocity, vel, m_flick.m_maxVelocity); in updateFlickParameters()

12