Searched refs:pressure (Results 1 - 25 of 32) sorted by relevance

12

/haiku/src/apps/midiplayer/
H A DSynthBridge.cpp72 SynthBridge::KeyPressure(uchar channel, uchar note, uchar pressure, argument
75 fMidiSynth.KeyPressure(channel + 1, note, pressure, time / 1000);
96 SynthBridge::ChannelPressure(uchar channel, uchar pressure, bigtime_t time) argument
98 fMidiSynth.ChannelPressure(channel + 1, pressure, time / 1000);
H A DSynthBridge.h45 virtual void KeyPressure(uchar channel, uchar note, uchar pressure,
54 virtual void ChannelPressure( uchar channel, uchar pressure,
/haiku/src/add-ons/input_server/devices/wacom/
H A DTabletDevice.cpp291 uint32& mode, uint32& buttons, float& x, float& y, float& pressure,
312 pressure = (float)(pressureData + 120) / 240.0;
329 pressure = (float)pressureData / 511.0;
339 pressure = 0.0;
343 firstButton = pressure > 0.0 ? true : (data[1] & 0x01);
358 pressure = (float)pressureData / 1023.0;
381 pressure = (float)pressureData / 1023.0;
399 pressure = 0.0;
412 // as well as being the high bits of pressure.
415 // If the eraser end is down data[6] = 0, and pressure i
290 ReadData(const uchar* data, int dataBytes, bool& hasContact, uint32& mode, uint32& buttons, float& x, float& y, float& pressure, int32& clicks, int32& eraser, float& wheelX, float& wheelY, float& tiltX, float& tiltY) const argument
495 SetStatus(uint32 mode, uint32 buttons, float x, float y, float pressure, int32 clicks, uint32 modifiers, int32 eraser, float wheelX, float wheelY, float tiltX, float tiltY, const uchar* data) argument
670 float pressure = 0.0; local
[all...]
H A DTabletDevice.h39 float& pressure,
50 float pressure,
/haiku/src/kits/midi/
H A DMidiText.cpp57 uchar channel, uchar note, uchar pressure, uint32 time)
61 "KEY PRESSURE; channel = %d, note = %d, pressure = %d\n",
62 channel, note, pressure);
89 BMidiText::ChannelPressure(uchar channel, uchar pressure, uint32 time) argument
93 "CHANNEL PRESSURE; channel = %d, pressure = %d\n",
94 channel, pressure);
56 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
H A DMidiGlue.cpp45 uchar channel, uchar note, uchar pressure, bigtime_t time)
47 fMidiObject->KeyPressure(channel + 1, note, pressure, MAKE_TIME(time));
70 uchar channel, uchar pressure, bigtime_t time)
72 fMidiObject->ChannelPressure(channel + 1, pressure, MAKE_TIME(time));
139 uchar channel, uchar note, uchar pressure, bigtime_t time)
142 channel + 1, note, pressure, MAKE_TIME(time));
166 uchar channel, uchar pressure, bigtime_t time)
168 fMidiObject->SprayChannelPressure(channel + 1, pressure, MAKE_TIME(time));
44 KeyPressure( uchar channel, uchar note, uchar pressure, bigtime_t time) argument
69 ChannelPressure( uchar channel, uchar pressure, bigtime_t time) argument
138 KeyPressure( uchar channel, uchar note, uchar pressure, bigtime_t time) argument
165 ChannelPressure( uchar channel, uchar pressure, bigtime_t time) argument
H A DMidiSynth.cpp178 uchar channel, uchar note, uchar pressure, uint32 time)
182 channel, note + fTranspose, pressure, time);
206 BMidiSynth::ChannelPressure(uchar channel, uchar pressure, uint32 time) argument
209 be_synth->fSynth->ChannelPressure(channel, pressure, time);
177 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
H A DMidiGlue.h36 uchar channel, uchar note, uchar pressure, bigtime_t time);
46 uchar channel, uchar pressure, bigtime_t time);
78 uchar channel, uchar note, uchar pressure, bigtime_t time);
88 uchar channel, uchar pressure, bigtime_t time);
H A DMidi.cpp78 uchar channel, uchar note, uchar pressure, uint32 time)
100 BMidi::ChannelPressure(uchar channel, uchar pressure, uint32 time) argument
282 uchar channel, uchar note, uchar pressure, uint32 time) const
285 channel - 1, note, pressure, MAKE_BIGTIME(time));
310 uchar channel, uchar pressure, uint32 time) const
313 channel - 1, pressure, MAKE_BIGTIME(time));
77 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
281 SprayKeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) const argument
309 SprayChannelPressure( uchar channel, uchar pressure, uint32 time) const argument
H A DMidiPort.cpp149 uchar channel, uchar note, uchar pressure, uint32 time)
152 channel - 1, note, pressure, MAKE_BIGTIME(time));
175 BMidiPort::ChannelPressure(uchar channel, uchar pressure, uint32 time) argument
178 channel - 1, pressure, MAKE_BIGTIME(time));
148 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
/haiku/headers/os/midi/
H A DMidi.h26 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
36 uchar channel, uchar pressure, uint32 time = B_NOW);
74 uchar channel, uchar note, uchar pressure, uint32 time) const;
84 uchar channel, uchar pressure, uint32 time) const;
H A DMidiSynth.h48 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
58 uchar channel, uchar pressure, uint32 time = B_NOW);
H A DMidiText.h22 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
32 uchar channel, uchar pressure, uint32 time = B_NOW);
H A DMidiPort.h31 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
41 uchar channel, uchar pressure, uint32 time = B_NOW);
H A DMidiStore.h28 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
38 uchar channel, uchar pressure, uint32 time = B_NOW);
/haiku/headers/os/midi2/
H A DMidiConsumer.h62 uchar channel, uchar note, uchar pressure, bigtime_t time);
72 uchar channel, uchar pressure, bigtime_t time);
H A DMidiProducer.h76 uchar channel, uchar note, uchar pressure,
87 uchar channel, uchar pressure, bigtime_t time = 0) const;
/haiku/src/kits/midi2/
H A DMidiLocalProducer.cpp104 uchar pressure, bigtime_t time) const
110 data[2] = pressure;
154 uchar pressure, bigtime_t time) const
159 data[1] = pressure;
103 SprayKeyPressure(uchar channel, uchar note, uchar pressure, bigtime_t time) const argument
153 SprayChannelPressure(uchar channel, uchar pressure, bigtime_t time) const argument
H A DMidiLocalConsumer.cpp243 BMidiLocalConsumer::KeyPressure(uchar channel, uchar note, uchar pressure, bigtime_t time) argument
263 void BMidiLocalConsumer::ChannelPressure(uchar channel, uchar pressure, bigtime_t time) argument
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DTabletProtocolHandler.cpp293 float pressure = 1.0f; local
296 pressure = fPressure->ScaledFloatData();
347 info->pressure = pressure;
/haiku/src/add-ons/input_server/devices/mouse/
H A Dmovement_maker.cpp411 float pressure = 0; local
440 // use only a fraction of pressure range, the max pressure seems to be
442 pressure = 20 * (event->zPressure - fSpecs.minPressure)
447 && fSettings.tapgesture_sensibility > (20 - pressure)) {
/haiku/src/add-ons/input_server/devices/virtio/
H A DVirtioInputDevice.h28 float pressure; member in struct:TabletState
H A DVirtioInputDevice.cpp701 || fState.pressure != fNewState.pressure) {
704 fState.pressure = fNewState.pressure;
781 msg.AddFloat("be:tablet_pressure", s.pressure);
/haiku/headers/private/input/
H A Dkeyboard_mouse_driver.h115 float pressure; member in struct:__anon5
/haiku/src/system/kernel/slab/
H A DObjectCache.cpp73 pressure = 0;
234 if (empty_count < pressure

Completed in 324 milliseconds

12