Searched refs:bus (Results 1 - 25 of 94) sorted by relevance

1234

/macosx-10.10/pdisk-9/
H A DATA_media.h58 MEDIA open_ata_as_media(long bus, long device);
59 MEDIA open_atapi_as_media(long bus, long device);
62 char *linux_ata_name(long bus, long id);
H A Dpathname.c80 long bus; local
92 bus = path[9] - '0';
93 m = open_scsi_as_media(bus, id);
99 bus = path[8] - '0';
100 m = open_ata_as_media(bus, 0);
105 bus = path[8] - '0';
106 m = open_ata_as_media(bus, id);
116 bus = path[7] - 'a';
118 id += bus * 26;
150 long bus; local
[all...]
H A DSCSI_media.h59 MEDIA open_scsi_as_media(long bus, long device);
62 char *linux_scsi_name(long bus, long id);
H A DSCSI_media.c51 long bus; member in struct:SCSI_media
56 long bus; member in struct:bus_entry
74 long bus; member in struct:SCSI_media_iterator
88 long bus; member in struct:cache_item
126 long compute_id(long bus, long device);
127 int SCSI_ReadBlock(UInt32 id, UInt32 bus, UInt32 block_size, UInt32 block, UInt8 *address);
128 int SCSI_WriteBlock(UInt32 id, UInt32 bus, UInt32 block_size, UInt32 block, UInt8 *address);
129 int DoTestUnitReady(UInt8 targetID, int bus);
130 int DoReadCapacity(UInt32 id, UInt32 bus, UInt32 *blockCount, UInt32 *blockSize);
135 void fill_bus_entry(struct bus_entry *entry, long bus);
208 fill_bus_entry(struct bus_entry *entry, long bus) argument
287 open_scsi_as_media(long bus, long device) argument
439 DoTestUnitReady(UInt8 targetID, int bus) argument
479 SCSI_ReadBlock(UInt32 id, UInt32 bus, UInt32 block_size, UInt32 block, UInt8 *address) argument
528 SCSI_WriteBlock(UInt32 id, UInt32 bus, UInt32 block_size, UInt32 block, UInt8 *address) argument
576 DoReadCapacity(UInt32 id, UInt32 bus, UInt32 *blockCount, UInt32 *blockSize) argument
630 DoInquiry(UInt32 id, UInt32 bus, UInt32 *devType) argument
860 long bus; local
881 linux_scsi_name(long bus, long id) argument
947 probe_scsi_device(long bus, long id, int unsure) argument
964 lookup_scsi_device(long bus, long id, int *is_cdrom, int *unsure) argument
1006 lookup_scsi_index(long index, int is_cdrom, long *bus, long *id) argument
1040 add_to_cache(long bus, long id, int is_cdrom, int unsure) argument
[all...]
/macosx-10.10/xnu-2782.1.97/tools/lldbmacros/
H A Dpci.py42 def MakeMemMappedPciCfgAddr(bus, dev, func, offs):
44 bus, device, function, and offset
46 bus, dev, func, offs: int - bus, device, function, and offset that specifies
51 return GetMemMappedPciCfgAddrBase() | (bus << 20) | (dev << 15) | (func << 12) | offs
53 def DoPciCfgRead(bits, bus, dev, func, offs):
57 bus, dev, func, offs: int - PCI config bus, device, function and offset
61 phys_addr = MakeMemMappedPciCfgAddr(bus, dev, func, offs)
64 def DoPciCfgWrite(bits, bus, de
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DAudioBuffer.cpp56 RefPtr<AudioBus> bus = createBusFromInMemoryAudioFile(data, dataSize, mixToMono, sampleRate); local
57 if (bus.get())
58 return adoptRef(new AudioBuffer(bus.get()));
77 AudioBuffer::AudioBuffer(AudioBus* bus) argument
79 , m_sampleRate(bus->sampleRate())
80 , m_length(bus->length())
82 // Copy audio data from the bus to the Float32Arrays we manage.
83 unsigned numberOfChannels = bus->numberOfChannels();
88 channelDataArray->setRange(bus->channel(i)->data(), m_length, 0);
H A DChannelMergerNode.cpp70 ASSERT_UNUSED(framesToProcess, framesToProcess == output->bus()->length());
72 // Output bus not updated yet, so just output silence.
74 output->bus()->zero();
83 unsigned numberOfInputChannels = input->bus()->numberOfChannels();
87 AudioChannel* inputChannel = input->bus()->channel(j);
88 AudioChannel* outputChannel = output->bus()->channel(outputChannelIndex);
121 // There can in rare cases be a slight delay before the output bus is updated to the new number of
H A DAudioBasicProcessorNode.cpp72 AudioBus* destinationBus = output(0)->bus();
77 AudioBus* sourceBus = input(0)->bus();
90 // Render input stream - suggest to the input to render directly into output bus for in-place processing in process() if possible.
91 input(0)->pull(output(0)->bus(), framesToProcess);
H A DAudioDestinationNode.h74 void set(AudioBus* bus) argument
76 if (bus)
77 m_sourceBus->copyFrom(*bus);
H A DAnalyserNode.cpp52 AudioBus* outputBus = output(0)->bus();
59 AudioBus* inputBus = input(0)->bus();
H A DChannelSplitterNode.cpp61 AudioBus* source = input(0)->bus();
68 AudioBus* destination = output(i)->bus();
H A DGainNode.cpp58 AudioBus* outputBus = output(0)->bus();
64 AudioBus* inputBus = input(0)->bus();
75 // Apply the gain with de-zippering into the output bus.
H A DMediaStreamAudioSource.cpp88 void MediaStreamAudioSource::consumeAudio(AudioBus* bus, size_t numberOfFrames) argument
92 (*it)->consumeAudio(bus, numberOfFrames);
/macosx-10.10/WebCore-7600.1.25/platform/audio/
H A DAudioSourceProvider.h41 virtual void provideInput(AudioBus* bus, size_t framesToProcess) = 0;
H A DMultiChannelResampler.cpp56 virtual void provideInput(AudioBus* bus, size_t framesToProcess) argument
58 bool isBusGood = bus && bus->numberOfChannels() == 1;
80 memcpy(bus->channel(0)->mutableData(), m_multiChannelBus->channel(m_currentChannel)->data(), sizeof(float) * framesToProcess);
H A DAudioFileReader.h50 void writeBusToAudioFile(AudioBus* bus, const char* filePath, double fileSampleRate);
/macosx-10.10/IOGraphics-485/tools/
H A Di2cexample.c94 IOOptionBits bus; local
108 for( bus = 0; bus < busCount; bus++ )
112 fprintf(stderr, "/* Bus %ld: */\n", bus);
114 kr = IOFBCopyI2CInterfaceForBus(framebuffer, bus, &interface);
H A Ditvview.c117 IOOptionBits bus; local
131 for( bus = 0; bus < busCount; bus++ )
135 kr = IOFBCopyI2CInterfaceForBus(framebuffer, bus, &interface);
146 printf("\nEDID using bus %ld:\n", bus);
149 printf("\niTV using bus %ld:\n", bus);
/macosx-10.10/IOPCIFamily-239.1.2/tools/
H A Dpcidump.c13 uint32_t bus, uint32_t device, uint32_t function,
26 param.address.pci.bus = bus;
41 uint32_t bus, uint32_t device, uint32_t function,
55 param.address.pci.bus = bus;
129 uint32_t bus, uint32_t device, uint32_t function)
137 space.es.busNum = bus;
187 uint32_t bus, uint32_t device, uint32_t fn,
206 data[off >> 2] = configRead32(connect, segment, bus, devic
12 configRead32(io_connect_t connect, uint32_t segment, uint32_t bus, uint32_t device, uint32_t function, uint32_t offset) argument
40 configWrite32(io_connect_t connect, uint32_t segment, uint32_t bus, uint32_t device, uint32_t function, uint32_t offset, uint32_t data) argument
128 lookService(uint32_t segment, uint32_t bus, uint32_t device, uint32_t function) argument
186 dumpDevice(io_connect_t connect, uint32_t segment, uint32_t bus, uint32_t device, uint32_t fn, uint32_t * maxBus, uint32_t * maxFn) argument
270 uint32_t bus, device, fn, maxFn; local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/audio/gstreamer/
H A DAudioDestinationGStreamer.cpp79 GRefPtr<GstBus> bus = adoptGRef(gst_pipeline_get_bus(GST_PIPELINE(m_pipeline))); local
80 ASSERT(bus);
81 gst_bus_add_signal_watch(bus.get());
82 g_signal_connect(bus.get(), "message", G_CALLBACK(messageCallback), this);
86 "bus", m_renderBus.get(),
106 GRefPtr<GstBus> bus = adoptGRef(gst_pipeline_get_bus(GST_PIPELINE(m_pipeline))); local
107 ASSERT(bus);
108 g_signal_handlers_disconnect_by_func(bus.get(), reinterpret_cast<gpointer>(messageCallback), this);
109 gst_bus_remove_signal_watch(bus.get());
/macosx-10.10/WebCore-7600.1.25/platform/audio/mac/
H A DAudioBusMac.mm56 RefPtr<AudioBus> bus(createBusFromInMemoryAudioFile([audioData bytes], [audioData length], false, sampleRate));
57 return bus;
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWPseudoAddressSpace.h211 @param bus Points to IOFireWireBus object.
217 IOFireWireBus* bus,
225 @param bus Points to IOFireWireBus object.
231 IOFireWireBus* bus,
239 @param bus Points to IOFireWireBus object.
245 IOFireWireBus* bus,
253 @param bus Points to IOFireWireBus object.
258 IOFireWireBus* bus,
264 @param bus Points to IOFireWireBus object.
272 IOFireWireBus* bus,
[all...]
H A DIOFWUserPhysicalAddressSpace.h52 IOFireWireBus * bus,
H A DIOFWUserPhysicalAddressSpace.cpp38 IOFireWireBus* bus,
43 if (!IOFWPhysicalAddressSpace::initWithDesc(bus, mem))
37 initWithDesc( IOFireWireBus* bus, IOMemoryDescriptor* mem) argument
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/IOKit/graphics/
H A DIOFramebufferPrivate.h294 IOReturn stopDDC1SendCommand(IOIndex bus, IOI2CBusTiming * timing);
295 void waitForDDCDataLine(IOIndex bus, IOI2CBusTiming * timing, UInt32 waitTime);
297 IOReturn readDDCBlock(IOIndex bus, IOI2CBusTiming * timing, UInt8 deviceAddress, UInt8 startAddress, UInt8 * data);
298 IOReturn i2cReadDDCciData(IOIndex bus, IOI2CBusTiming * timing, UInt8 deviceAddress, UInt8 count, UInt8 *buffer);
299 IOReturn i2cReadData(IOIndex bus, IOI2CBusTiming * timing, UInt8 deviceAddress, UInt8 count, UInt8 * buffer);
300 IOReturn i2cWriteData(IOIndex bus, IOI2CBusTiming * timing, UInt8 deviceAddress, UInt8 count, UInt8 * buffer);
302 void i2cStart(IOIndex bus, IOI2CBusTiming * timing);
303 void i2cStop(IOIndex bus, IOI2CBusTiming * timing);
304 void i2cSendAck(IOIndex bus, IOI2CBusTiming * timing);
305 void i2cSendNack(IOIndex bus, IOI2CBusTimin
[all...]

Completed in 426 milliseconds

1234