Home
last modified time | relevance | path

Searched refs:port_index (Results 1 – 25 of 1030) sorted by relevance

12345678910>>...42

/dports/audio/jack/jack2-eaedec353489f26617221d66f80fd2503953c663/common/
H A DJackNetTool.cpp101 for (int port_index = 0; port_index < fNPorts; port_index++) { in NetMidiBuffer() local
140 for (int port_index = 0; port_index < fNPorts; port_index++) { in DisplayEvents() local
156 for (int port_index = 0; port_index < fNPorts; port_index++) { in RenderFromJackPorts() local
176 for (int port_index = 0; port_index < fNPorts; port_index++) { in RenderToJackPorts() local
213 for (int port_index = 0; port_index < fNPorts; port_index++) { in NetAudioBuffer() local
265 for (int port_index = 0; port_index < fNPorts; port_index++) { in Cleanup() local
279 for (int port_index = 0; port_index < fNPorts; port_index++) { in ActivePortsToNetwork() local
296 for (int port_index = 0; port_index < fNPorts; port_index++) { in ActivePortsFromNetwork() local
300 for (uint port_index = 0; port_index < port_num; port_index++) { in ActivePortsFromNetwork() local
312 for (int port_index = 0; port_index < fNPorts; port_index++) { in RenderFromJackPorts() local
[all …]
H A DJackGraphManager.cpp79 AssertPort(port_index); in GetPort()
174 AssertPort(port_index); in GetBuffer()
234 AssertPort(port_index); in RequestMonitor()
290 AssertPort(port_index); in ComputeTotalLatency()
306 for (port_index = FIRST_AVAILABLE_PORT; port_index < fPortMax; port_index++) { in ComputeTotalLatencies()
364 for (port_index = FIRST_AVAILABLE_PORT; port_index < fPortMax; port_index++) { in SetBufferSize()
378 for (port_index = FIRST_AVAILABLE_PORT; port_index < fPortMax; port_index++) { in AllocatePortAux()
389 return (port_index < fPortMax) ? port_index : NO_PORT; in AllocatePortAux()
417 return port_index; in AllocatePort()
539 AssertPort(port_index); in DisconnectAll()
[all …]
H A DJackGraphManager.h49 void AssertPort(jack_port_id_t port_index);
68 int ReleasePort(int refnum, jack_port_id_t port_index);
77 int ComputeTotalLatency(jack_port_id_t port_index);
89 int GetConnectionsNum(jack_port_id_t port_index) in GetConnectionsNum() argument
92 return manager->Connections(port_index); in GetConnectionsNum()
95 const char** GetConnections(jack_port_id_t port_index);
102 void DisconnectAllInput(jack_port_id_t port_index);
103 void DisconnectAllOutput(jack_port_id_t port_index);
104 int DisconnectAll(jack_port_id_t port_index);
113 int GetInputRefNum(jack_port_id_t port_index);
[all …]
H A DJackMidiDriver.cpp60 jack_port_id_t port_index; in Attach() local
74 port = fGraphManager->GetPort(port_index); in Attach()
76 fCapturePortList[i] = port_index; in Attach()
77 jack_log("JackMidiDriver::Attach fCapturePortList[i] port_index = %ld", port_index); in Attach()
87 port = fGraphManager->GetPort(port_index); in Attach()
89 fPlaybackPortList[i] = port_index; in Attach()
90 jack_log("JackMidiDriver::Attach fPlaybackPortList[i] port_index = %ld", port_index); in Attach()
201 JackMidiBuffer* JackMidiDriver::GetInputBuffer(int port_index) in GetInputBuffer() argument
203 assert(fCapturePortList[port_index]); in GetInputBuffer()
207 JackMidiBuffer* JackMidiDriver::GetOutputBuffer(int port_index) in GetOutputBuffer() argument
[all …]
H A DJackAudioDriver.cpp117 jack_port_id_t port_index; in Attach() local
131 port = fGraphManager->GetPort(port_index); in Attach()
133 fCapturePortList[i] = port_index; in Attach()
144 port = fGraphManager->GetPort(port_index); in Attach()
146 fPlaybackPortList[i] = port_index; in Attach()
157 fMonitorPortList[i] = port_index; in Attach()
358 jack_default_audio_sample_t* JackAudioDriver::GetInputBuffer(int port_index) in GetInputBuffer() argument
360 return fCapturePortList[port_index] in GetInputBuffer()
365 jack_default_audio_sample_t* JackAudioDriver::GetOutputBuffer(int port_index) in GetOutputBuffer() argument
367 return fPlaybackPortList[port_index] in GetOutputBuffer()
[all …]
H A DJackConnectionManager.cpp128 return fConnection[port_index].GetItems(); in GetConnections()
138 int JackConnectionManager::AddInputPort(int refnum, jack_port_id_t port_index) in AddInputPort() argument
140 if (fInputPort[refnum].AddItem(port_index)) { in AddInputPort()
152 int JackConnectionManager::AddOutputPort(int refnum, jack_port_id_t port_index) in AddOutputPort() argument
154 if (fOutputPort[refnum].AddItem(port_index)) { in AddOutputPort()
170 if (fInputPort[refnum].RemoveItem(port_index)) { in RemoveInputPort()
185 if (fOutputPort[refnum].RemoveItem(port_index)) { in RemoveOutputPort()
384 int JackConnectionManager::GetInputRefNum(jack_port_id_t port_index) const in GetInputRefNum()
387 if (fInputPort[i].CheckItem(port_index)) { in GetInputRefNum()
398 int JackConnectionManager::GetOutputRefNum(jack_port_id_t port_index) const in GetOutputRefNum()
[all …]
H A DJackNetAdapter.cpp156 for (int port_index = 0; port_index < fCaptureChannels; port_index++) { in ~JackNetAdapter() local
157 delete[] fSoftCaptureBuffer[port_index]; in ~JackNetAdapter()
162 for (int port_index = 0; port_index < fPlaybackChannels; port_index++) { in ~JackNetAdapter() local
163 delete[] fSoftPlaybackBuffer[port_index]; in ~JackNetAdapter()
229 for (int port_index = 0; port_index < fCaptureChannels; port_index++) { in Init() local
230 fSoftCaptureBuffer[port_index] = new sample_t[fParams.fPeriodSize]; in Init()
231 fNetAudioCaptureBuffer->SetBuffer(port_index, fSoftCaptureBuffer[port_index]); in Init()
237 for (int port_index = 0; port_index < fPlaybackChannels; port_index++) { in Init() local
238 fSoftPlaybackBuffer[port_index] = new sample_t[fParams.fPeriodSize]; in Init()
239 fNetAudioPlaybackBuffer->SetBuffer(port_index, fSoftPlaybackBuffer[port_index]); in Init()
H A DJackNetManager.cpp42 int port_index; in JackNetMaster() local
46 for (port_index = 0; port_index < fParams.fSendAudioChannels; port_index++) { in JackNetMaster()
51 for (port_index = 0; port_index < fParams.fReturnAudioChannels; port_index++) { in JackNetMaster()
57 for (port_index = 0; port_index < fParams.fSendMidiChannels; port_index++) { in JackNetMaster()
58 fMidiCapturePorts[port_index] = NULL; in JackNetMaster()
62 for (port_index = 0; port_index < fParams.fReturnMidiChannels; port_index++) { in JackNetMaster()
242 int port_index; in FreePorts() local
243 for (port_index = 0; port_index < fParams.fSendAudioChannels; port_index++) { in FreePorts()
248 for (port_index = 0; port_index < fParams.fReturnAudioChannels; port_index++) { in FreePorts()
253 for (port_index = 0; port_index < fParams.fSendMidiChannels; port_index++) { in FreePorts()
[all …]
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/utils/rfnoc_blocktool/templates/modules/
H A Daxis_chdr_modules_template.mako6 port_index = '0'
20 .s_axis_chdr_tlast (s_rfnoc_chdr_tlast[${port_index}+i]),
30 .flush_done (data_i_flush_done[${port_index}+i])
40 .s_axis_chdr_tlast (s_rfnoc_chdr_tlast[${port_index}]),
41 .s_axis_chdr_tvalid (s_rfnoc_chdr_tvalid[${port_index}]),
42 .s_axis_chdr_tready (s_rfnoc_chdr_tready[${port_index}]),
50 .flush_done (data_i_flush_done[${port_index}])
55 port_index = port_index + '+' + str(num_ports) if (port_index != '0') else str(num_ports)
63 port_index = '0'
107 .flush_done (data_o_flush_done[${port_index}])
[all …]
H A Daxis_data_modules_template.mako9 port_index = '0'
30 .s_axis_chdr_tlast (s_rfnoc_chdr_tlast[${port_index}+i]),
46 .flush_done (data_i_flush_done[${port_index}+i])
63 .s_axis_chdr_tlast (s_rfnoc_chdr_tlast[${port_index}]),
64 .s_axis_chdr_tvalid (s_rfnoc_chdr_tvalid[${port_index}]),
65 .s_axis_chdr_tready (s_rfnoc_chdr_tready[${port_index}]),
79 .flush_done (data_i_flush_done[${port_index}])
84 port_index = port_index + '+' + str(num_ports) if (port_index != '0') else str(num_ports)
92 port_index = '0'
167 .flush_done (data_o_flush_done[${port_index}])
[all …]
H A Daxis_pyld_ctxt_modules_template.mako9 port_index = '0'
31 .s_axis_chdr_tlast (s_rfnoc_chdr_tlast[${port_index}+i]),
47 .flush_done (data_i_flush_done[${port_index}+i])
65 .s_axis_chdr_tlast (s_rfnoc_chdr_tlast[${port_index}]),
66 .s_axis_chdr_tvalid (s_rfnoc_chdr_tvalid[${port_index}]),
67 .s_axis_chdr_tready (s_rfnoc_chdr_tready[${port_index}]),
81 .flush_done (data_i_flush_done[${port_index}])
86 port_index = port_index + '+' + str(num_ports) if (port_index != '0') else str(num_ports)
94 port_index = '0'
171 .flush_done (data_o_flush_done[${port_index}])
[all …]
/dports/emulators/dosbox-staging/dosbox-staging-0.78.0/src/dos/
H A Dprogram_serial.cpp79 const auto port_index = port - 1; in Run() local
80 assert(port_index >= 0 && port_index < SERIAL_MAX_PORTS); in Run()
112 delete serialports[port_index]; in Run()
117 serialports[port_index] = nullptr; in Run()
120 serialports[port_index] = new CSerialDummy(port_index, in Run()
125 serialports[port_index] = new CDirectSerial(port_index, in Run()
131 serialports[port_index] = new CSerialModem(port_index, in Run()
135 serialports[port_index] = new CNullModem(port_index, commandLine); in Run()
139 serialports[port_index] = nullptr; in Run()
143 if (serialports[port_index] != nullptr) { in Run()
[all …]
/dports/ports-mgmt/synth/synth-2.12/src/
H A Dportscan.ads126 (Element_Type => port_index,
127 Index_Type => port_index);
131 Index_Type => port_index,
136 ap_index : port_index;
137 reverse_score : port_index;
150 Element_Type => port_index,
165 (Key_Type => port_index,
166 Element_Type => port_index,
172 sequence_id : port_index := 0;
214 lot_counter : port_index := 0;
[all …]
/dports/audio/eq10q-lv2/eq10q-2.2/gui/
H A Dguitester.cpp11 void writeTestFunction(LV2UI_Controller controller, uint32_t port_index, uint32_t buffer_size, uint… in writeTestFunction() argument
19 switch (port_index) in writeTestFunction()
39 …if((int)port_index >= (PORT_OFFSET + 2*m_iNumOfChannels) && (int)port_index < (PORT_OFFSET + 2*m_i… in writeTestFunction()
45 …else if((int)port_index >= (PORT_OFFSET + 2*m_iNumOfChannels + m_iNumOfBands) && (int)port_index <… in writeTestFunction()
51 …else if((int)port_index >= (PORT_OFFSET + 2*m_iNumOfChannels + 2*m_iNumOfBands) && (int)port_index in writeTestFunction()
57 …else if((int)port_index >= (PORT_OFFSET + 2*m_iNumOfChannels + 3*m_iNumOfBands) && (int)port_index in writeTestFunction()
63 …else if((int)port_index >= (PORT_OFFSET + 2*m_iNumOfChannels + 4*m_iNumOfBands) && (int)port_index in writeTestFunction()
69 …else if((int)port_index >= (PORT_OFFSET + 2*m_iNumOfChannels + 5*m_iNumOfBands) && (int)port_index in writeTestFunction()
75 …else if((int)port_index >= (PORT_OFFSET + 2*m_iNumOfChannels + 5*m_iNumOfBands + m_iNumOfChannels)… in writeTestFunction()
89 …std::cout<<"LV2 Write function tester: Port = "<< sPort << " ("<< port_index <<") Data = "<<data<<… in writeTestFunction()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/modules/webmidi/
H A Dmidi_access.cc155 unsigned port_index = outputs_.size(); in DidAddOutputPort() local
164 if (port_index >= inputs_.size()) in DidSetInputPortState()
168 if (inputs_[port_index]->GetState() != device_state) in DidSetInputPortState()
169 inputs_[port_index]->SetState(device_state); in DidSetInputPortState()
174 if (port_index >= outputs_.size()) in DidSetOutputPortState()
178 if (outputs_[port_index]->GetState() != device_state) in DidSetOutputPortState()
179 outputs_[port_index]->SetState(device_state); in DidSetOutputPortState()
187 if (port_index >= inputs_.size()) in DidReceiveMIDIData()
190 inputs_[port_index]->DidReceiveMIDIData(port_index, data, length, time_stamp); in DidReceiveMIDIData()
193 void MIDIAccess::SendMIDIData(unsigned port_index, in SendMIDIData() argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/modules/webmidi/
H A Dmidi_access.cc172 unsigned port_index = outputs_.size(); in DidAddOutputPort() local
181 if (port_index >= inputs_.size()) in DidSetInputPortState()
185 if (inputs_[port_index]->GetState() != device_state) in DidSetInputPortState()
186 inputs_[port_index]->SetState(device_state); in DidSetInputPortState()
191 if (port_index >= outputs_.size()) in DidSetOutputPortState()
195 if (outputs_[port_index]->GetState() != device_state) in DidSetOutputPortState()
196 outputs_[port_index]->SetState(device_state); in DidSetOutputPortState()
204 if (port_index >= inputs_.size()) in DidReceiveMIDIData()
207 inputs_[port_index]->DidReceiveMIDIData(port_index, data, length, time_stamp); in DidReceiveMIDIData()
210 void MIDIAccess::SendMIDIData(unsigned port_index, in SendMIDIData() argument
[all …]
/dports/audio/gsequencer/gsequencer-3.10.4/ags/X/machine/
H A Dags_live_lv2_bridge_callbacks.c187 port_index = AGS_BULK_MEMBER(list_bulk_member->data)->port_index; in ags_live_lv2_bridge_show_gui_callback()
199 port_index, in ags_live_lv2_bridge_show_gui_callback()
213 port_index, in ags_live_lv2_bridge_show_gui_callback()
227 port_index, in ags_live_lv2_bridge_show_gui_callback()
241 port_index, in ags_live_lv2_bridge_show_gui_callback()
696 port_index = bulk_member->port_index; in ags_live_lv2_bridge_dial_changed_callback()
737 port_index = bulk_member->port_index; in ags_live_lv2_bridge_scale_changed_callback()
780 port_index = bulk_member->port_index; in ags_live_lv2_bridge_spin_button_changed_callback()
820 port_index = bulk_member->port_index; in ags_live_lv2_bridge_check_button_clicked_callback()
859 port_index = bulk_member->port_index; in ags_live_lv2_bridge_toggle_button_clicked_callback()
[all …]
H A Dags_lv2_bridge_callbacks.c695 port_index = bulk_member->port_index; in ags_lv2_bridge_dial_changed_callback()
708 port_index, in ags_lv2_bridge_dial_changed_callback()
737 port_index = bulk_member->port_index; in ags_lv2_bridge_scale_changed_callback()
750 port_index, in ags_lv2_bridge_scale_changed_callback()
779 port_index = bulk_member->port_index; in ags_lv2_bridge_spin_button_changed_callback()
792 port_index, in ags_lv2_bridge_spin_button_changed_callback()
819 port_index = bulk_member->port_index; in ags_lv2_bridge_check_button_clicked_callback()
831 port_index, in ags_lv2_bridge_check_button_clicked_callback()
858 port_index = bulk_member->port_index; in ags_lv2_bridge_toggle_button_clicked_callback()
870 port_index, in ags_lv2_bridge_toggle_button_clicked_callback()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/midi/
H A Dmidi_manager.cc172 uint32_t port_index, in DispatchSendMidiData() argument
239 DCHECK_LT(port_index, input_ports_.size()); in SetInputPortState()
240 input_ports_[port_index].state = state; in SetInputPortState()
242 client->SetInputPortState(port_index, state); in SetInputPortState()
247 DCHECK_LT(port_index, output_ports_.size()); in SetOutputPortState()
248 output_ports_[port_index].state = state; in SetOutputPortState()
250 client->SetOutputPortState(port_index, state); in SetOutputPortState()
255 DCHECK_LT(port_index, output_ports_.size()); in GetOutputPortState()
256 return output_ports_[port_index].state; in GetOutputPortState()
270 void MidiManager::ReceiveMidiData(uint32_t port_index, in ReceiveMidiData() argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/midi/
H A Dmidi_manager.cc172 uint32_t port_index, in DispatchSendMidiData() argument
239 DCHECK_LT(port_index, input_ports_.size()); in SetInputPortState()
240 input_ports_[port_index].state = state; in SetInputPortState()
242 client->SetInputPortState(port_index, state); in SetInputPortState()
247 DCHECK_LT(port_index, output_ports_.size()); in SetOutputPortState()
248 output_ports_[port_index].state = state; in SetOutputPortState()
250 client->SetOutputPortState(port_index, state); in SetOutputPortState()
255 DCHECK_LT(port_index, output_ports_.size()); in GetOutputPortState()
256 return output_ports_[port_index].state; in GetOutputPortState()
270 void MidiManager::ReceiveMidiData(uint32_t port_index, in ReceiveMidiData() argument
[all …]
/dports/net-mgmt/p5-SNMP-Info/SNMP-Info-3.81/lib/SNMP/Info/Layer1/
H A DS3000.pm188 my $port_index = $s3000->i_index() || {};
191 foreach my $iid ( keys %$port_index ) {
192 my $index = $port_index->{$iid};
207 my $port_index = $s3000->i_index() || {};
210 foreach my $iid ( keys %$port_index ) {
211 my $index = $port_index->{$iid};
226 my $port_index = $s3000->i_index() || {};
229 foreach my $iid ( keys %$port_index ) {
230 my $index = $port_index->{$iid};
249 foreach my $iid ( keys %$port_index ) {
[all …]
/dports/audio/guitarix-lv2/guitarix-0.43.1/src/LV2/gx_mbcompressor.lv2/
H A Dgx_mbcompressor_ui.cpp249 switch ((PortIndex)port_index) in check_multi_controller()
279 uint32_t port_index = 0; in slider_value_changed() local
282 port_index = CROSSOVER_B1_B2; in slider_value_changed()
285 port_index = CROSSOVER_B2_B3; in slider_value_changed()
288 port_index = CROSSOVER_B3_B4; in slider_value_changed()
291 port_index = CROSSOVER_B4_B5; in slider_value_changed()
294 if (port_index) { in slider_value_changed()
505 if (port_index >= CROSSOVER_B1_B2 && port_index <= CROSSOVER_B4_B5) { in plugin_port_event()
507 ui->block_event = (int)port_index; in plugin_port_event()
509 if (port_index >= MODE1 && port_index <= MODE5) { in plugin_port_event()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/crashpad/crashpad/tools/mac/
H A Dexception_port_tool.cc228 for (size_t port_index = 0; port_index < handlers.size(); ++port_index) { in ShowExceptionPorts() local
237 port_index, in ShowExceptionPorts()
238 handlers[port_index].mask, in ShowExceptionPorts()
239 handlers[port_index].port, in ShowExceptionPorts()
240 handlers[port_index].behavior, in ShowExceptionPorts()
241 handlers[port_index].flavor); in ShowExceptionPorts()
266 port_index, in ShowExceptionPorts()
267 handlers[port_index].mask, in ShowExceptionPorts()
269 handlers[port_index].port, in ShowExceptionPorts()
270 handlers[port_index].behavior, in ShowExceptionPorts()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/crashpad/crashpad/tools/mac/
H A Dexception_port_tool.cc229 for (size_t port_index = 0; port_index < handlers.size(); ++port_index) { in ShowExceptionPorts() local
238 port_index, in ShowExceptionPorts()
239 handlers[port_index].mask, in ShowExceptionPorts()
240 handlers[port_index].port, in ShowExceptionPorts()
241 handlers[port_index].behavior, in ShowExceptionPorts()
242 handlers[port_index].flavor); in ShowExceptionPorts()
267 port_index, in ShowExceptionPorts()
268 handlers[port_index].mask, in ShowExceptionPorts()
270 handlers[port_index].port, in ShowExceptionPorts()
271 handlers[port_index].behavior, in ShowExceptionPorts()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/scsi/isci/
H A Dport_config.c249 u8 port_index; in sci_mpc_agent_validate_phy_configuration() local
256 for (port_index = 0; port_index < SCI_MAX_PORTS; port_index++) { in sci_mpc_agent_validate_phy_configuration()
257 phy_mask = ihost->oem_parameters.ports[port_index].phy_mask; in sci_mpc_agent_validate_phy_configuration()
279 port_agent->phy_valid_port_range[phy_index].min_index = port_index; in sci_mpc_agent_validate_phy_configuration()
282 if (phy_index != port_index) { in sci_mpc_agent_validate_phy_configuration()
310 sci_port_add_phy(&ihost->ports[port_index], in sci_mpc_agent_validate_phy_configuration()
437 u8 port_index; in sci_apc_agent_validate_phy_configuration() local
444 port_index = phy_index; in sci_apc_agent_validate_phy_configuration()
487 u8 port_index; in sci_apc_agent_configure_ports() local
508 port_index++) { in sci_apc_agent_configure_ports()
[all …]

12345678910>>...42