Searched refs:channel (Results 76 - 100 of 166) sorted by relevance

1234567

/haiku/src/kits/midi2/
H A DMidiLocalConsumer.cpp229 BMidiLocalConsumer::NoteOff(uchar channel, uchar note, uchar velocity, bigtime_t time) argument
236 BMidiLocalConsumer::NoteOn(uchar channel, uchar note, uchar velocity, bigtime_t time) argument
243 BMidiLocalConsumer::KeyPressure(uchar channel, uchar note, uchar pressure, bigtime_t time) argument
250 BMidiLocalConsumer::ControlChange(uchar channel, uchar controlNumber, uchar controlValue, bigtime_t time) argument
257 BMidiLocalConsumer::ProgramChange(uchar channel, uchar programNumber, bigtime_t time) argument
263 void BMidiLocalConsumer::ChannelPressure(uchar channel, uchar pressure, bigtime_t time) argument
270 BMidiLocalConsumer::PitchBend(uchar channel, uchar lsb, uchar msb, bigtime_t time) argument
/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A Dradeon_driver.h229 bool Radeon_VIPRead( device_info *di, uint channel, uint address, uint32 *data, bool lock );
230 bool Radeon_VIPWrite( device_info *di, uint8 channel, uint address, uint32 data, bool lock );
231 bool Radeon_VIPFifoRead(device_info *di, uint8 channel, uint32 address, uint32 count, uint8 *buffer, bool lock);
232 bool Radeon_VIPFifoWrite(device_info *di, uint8 channel, uint32 address, uint32 count, uint8 *buffer, bool lock);
/haiku/src/apps/soundrecorder/
H A DVUView.h32 size_t size, uint32 format, int32 channel);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_main.cpp33 // create the kernel channel
34 struct fuse_chan* channel = fuse_mount("/dummy", &args); local
35 if (channel != NULL) {
37 struct fuse* fuseHandle = fuse_new(channel, &args, op, opSize,
46 fuse_unmount("/dummy", channel);
/haiku/src/add-ons/kernel/drivers/audio/usb/
H A DStream.cpp88 TRACE(ERR, "Ignore alternate %d - channel count %d "
377 TRACE(INF, "Report channel %d as enabled.\n", offset);
392 TRACE(INF, "%s channel %d.\n",
494 // [buffer][channel] init buffers
499 for (size_t channel = startChannel;
500 channel < format->fNumChannels; channel++) {
503 descs[channel].stride = stride;
506 descs[channel].base = (char*)fBuffers;
507 descs[channel]
[all...]
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DVideoIn.h114 float FrequencyForChannel(int channel, video_in_standard standard);
116 bool SetChannel(int channel, video_in_standard standard);
/haiku/src/add-ons/translators/sgi/
H A DSGIImage.h103 status_t ReadRow(void* row, int32 lineNum, int32 channel);
108 status_t WriteRow(void* row, int32 lineNum, int32 channel);
/haiku/src/kits/midi/
H A DMidiStore.cpp93 BMidiStore::NoteOff(uchar channel, uchar note, uchar velocity, argument
99 event->byte1 = B_NOTE_OFF | (channel - 1);
107 BMidiStore::NoteOn(uchar channel, uchar note, argument
113 event->byte1 = B_NOTE_ON | (channel - 1);
121 BMidiStore::KeyPressure(uchar channel, uchar note, argument
127 event->byte1 = B_KEY_PRESSURE | (channel - 1);
135 BMidiStore::ControlChange(uchar channel, uchar controlNumber, argument
141 event->byte1 = B_CONTROL_CHANGE | (channel - 1);
149 BMidiStore::ProgramChange(uchar channel, uchar programNumber, argument
155 event->byte1 = B_PROGRAM_CHANGE | (channel
162 ChannelPressure(uchar channel, uchar pressure, uint32 time) argument
174 PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
[all...]
/haiku/src/apps/cortex/addons/Flanger/
H A DFlangerNode.cpp1426 // +++++ add 2-channel support 15sep991
1432 float channel[MAX_CHANNELS]; member in struct:_frame
1462 inFrame.channel[0] = ((float*)input.data())[inPos];
1464 inFrame.channel[1] = ((float*)input.data())[inPos + 1];
1480 delayedFrame.channel[0] = ((float*)m_pDelayBuffer->data())[pos];
1482 delayedFrame.channel[1] = ((float*)m_pDelayBuffer->data())[pos+1];
1488 delayedFrame.channel[0] *= ((float)readFrameHi - fReadFrame);
1490 delayedFrame.channel[1] *= ((float)readFrameHi - fReadFrame);
1497 hiFrame.channel[0] = ((float*)m_pDelayBuffer->data())[pos];
1499 hiFrame.channel[
[all...]
/haiku/src/add-ons/kernel/drivers/audio/echo/
H A Dmulti.cpp68 echo_channel_get_mix(void *card, MIXER_AUDIO_CHANNEL channel, int32 type, float *values) { argument
73 function[0].Channel = channel;
74 function[1].Channel = channel;
101 "\n", function[0].Data.iLevel, channel.wChannel, channel.dwType));
108 echo_channel_set_mix(void *card, MIXER_AUDIO_CHANNEL channel, int32 type, float *values) { argument
113 function[0].Channel = channel;
114 function[1].Channel = channel;
138 function[0].Data.iLevel, channel.wChannel, channel
161 echo_create_channel_control(multi_dev *multi, uint32 *index, int32 parent, int32 string, MIXER_AUDIO_CHANNEL channel, bool nominal) argument
221 MIXER_AUDIO_CHANNEL channel; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_radar.c130 * Find the internal HAL channel corresponding to the
131 * public HAL channel specified in c
143 * Check current channel to avoid the lookup.
146 if (cc != AH_NULL && cc->channel == c->channel &&
158 d = c->channel - cc->channel;
165 HALDEBUG(ah, HAL_DEBUG_DFS, "%s: channel %u/0x%x d %d\n", __func__,
166 cc->channel, cc->channel_flags, d);
173 __func__, c->channel,
[all...]
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerUtils.cpp152 GetChannelMask(int channel, uint32 all_channel_masks) argument
158 if (channel > count_nonzero_bits(all_channel_masks)) {
159 debugger("Mixer: GetChannelMask: channel > count_nonzero_bits(all_channel_masks)\n");
168 if (pos == channel)
193 GetChannelType(int channel, uint32 all_channel_masks) argument
195 return ChannelMaskToChannelType(GetChannelMask(channel, all_channel_masks));
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5111.c50 static uint16_t ar5212GetScaledPower(uint16_t channel, uint16_t pcdacValue,
52 static HAL_BOOL ar5212FindValueInList(uint16_t channel, uint16_t pcdacValue,
54 static void ar5212GetLowerUpperPcdacs(uint16_t pcdac, uint16_t channel,
74 * Take the MHz channel value and set the Channel value
93 uint16_t channel5111; /* 11a channel for 5111 */
160 /* Enable channel spreading for channel 14 */
284 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid channel flags 0x%x\n",
387 * Interpolate read transmit power values for this channel
434 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid channel flag
541 ar5212GetScaledPower(uint16_t channel, uint16_t pcdacValue, const PCDACS_EEPROM *pSrcStruct) argument
580 ar5212FindValueInList(uint16_t channel, uint16_t pcdacValue, const PCDACS_EEPROM *pSrcStruct, uint16_t *powerValue) argument
609 ar5212GetLowerUpperPcdacs(uint16_t pcdac, uint16_t channel, const PCDACS_EEPROM *pSrcStruct, uint16_t *pLowerPcdac, uint16_t *pUpperPcdac) argument
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/
H A Dar9280.c56 * Take the MHz channel value and set the Channel value
62 * For 2GHz channel,
66 * For 5GHz channel,
104 /* Enable channel spreading for channel 14 */
140 * the pre-Merlin chips only had a 2.5MHz channel
151 * behaviour that the AR5112 and later channel
242 * Interpolate read transmit power values for this channel
310 /* Make sure the channel is in the range of the TP values
314 (chan->channel < dat
[all...]
H A Dar9287.c56 * Take the MHz channel value and set the Channel value
62 * For 2GHz channel,
66 * For 5GHz channel,
113 /* Enable channel spreading for channel 14 */
184 * Interpolate read transmit power values for this channel
252 /* Make sure the channel is in the range of the TP values
256 (chan->channel < data[0].channelValue) ||
257 (chan->channel > data[numChannels-1].channelValue))
262 (i<numChannels) && (chan->channel > dat
[all...]
/haiku/src/add-ons/kernel/busses/ata/highpoint_ide_pci/
H A Dhighpoint_ide_pci.cpp28 #define HIGHPOINT_IDE_PCI_CHANNEL_MODULE_NAME "busses/ata/highpoint_ide_pci/channel/v1"
42 set_channel(void *cookie, ata_channel channel) argument
46 sATAAdapter->set_channel((ata_adapter_channel_info *)cookie, channel);
165 // from here we have valid channel...
166 ata_adapter_channel_info *channel TRACE_ONLY = NULL;
167 channel = (ata_adapter_channel_info *)*channel_cookie;
171 TRACE("init_channel(): channel not set, strange!\n");
175 TRACE("init_channel(): channel command %x, control %x, result: %d \n",
176 channel->command_block_base,
177 channel
[all...]
/haiku/src/add-ons/media/media-add-ons/usb_vision/
H A DTunerLocale.cpp75 Channel channel(str, 0);
76 fChannels.push_back(channel);
/haiku/src/add-ons/accelerants/radeon/
H A Dradeon_accelerant.h121 status_t Radeon_VIPRead( accelerator_info *ai, uint channel, uint address, uint32 *data );
122 status_t Radeon_VIPWrite( accelerator_info *ai, uint8 channel, uint address, uint32 data );
H A Dtheatre_out.c256 // for external encoder, we need the VIP channel
257 int channel = Radeon_FindVIPDevice( ai, THEATRE_ID ); local
259 if( channel < 0 ) {
263 SHOW_INFO( 2, "Rage Theatre found on VIP channel %d", channel );
264 si->theatre_channel = channel;
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DRequestChannel.cpp29 ChannelWriter(Channel* channel, void* buffer, int32 bufferSize) argument
30 : fChannel(channel),
141 RequestChannel::RequestChannel(Channel* channel) argument
142 : fChannel(channel),
/haiku/src/apps/mediaplayer/interface/
H A DPeakView.h62 void SetMax(float max, uint32 channel);
H A DPeakView.cpp295 PeakView::SetMax(float max, uint32 channel) argument
297 if (channel >= fChannelCount)
300 if (fChannelInfos[channel].current_max < max)
301 fChannelInfos[channel].current_max = max;
303 if (fChannelInfos[channel].current_max > 1.0)
304 fChannelInfos[channel].last_overshot_time = system_time();
/haiku/src/add-ons/kernel/busses/ata/it8211/
H A Dit8211.c12 #define IT8211_CHANNEL_MODULE_NAME "busses/ata/it8211/channel/v1"
22 it8211_set_channel(void *channelCookie, ata_channel channel) argument
25 channel);
/haiku/src/add-ons/kernel/busses/ata/generic_ide_pci/
H A Dgeneric_ide_pci.cpp17 #define GENERIC_IDE_PCI_CHANNEL_MODULE_NAME "busses/ata/generic_ide_pci/channel/v1"
27 set_channel(void *cookie, ata_channel channel) argument
29 sATAAdapter->set_channel((ata_adapter_channel_info *)cookie, channel);
/haiku/src/add-ons/kernel/drivers/audio/ice1712/
H A Dio.h58 uint32 read_ds_channel_data(ice1712 *ice, uint8 channel, ds8_register index);
59 void write_ds_channel_data(ice1712 *ice, uint8 channel, ds8_register index,

Completed in 712 milliseconds

1234567