HomeSort by relevance Sort by last modified time
    Searched defs:bus (Results 26 - 50 of 161) sorted by null

12 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNodeOutput.cpp 123 return bus();
126 AudioBus* AudioNodeOutput::bus() const function in class:WebCore::AudioNodeOutput
  /external/guava/guava-tests/test/com/google/common/eventbus/
ReentrantEventsTest.java 34 final EventBus bus = new EventBus(); field in class:ReentrantEventsTest
38 bus.register(hater);
40 bus.post(FIRST);
55 bus.post(SECOND);
70 bus.register(processor);
73 bus.register(recorder);
75 bus.post(FIRST);
83 bus.post(SECOND);
  /external/chromium_org/dbus/
bus_unittest.cc 5 #include "dbus/bus.h"
77 Bus::Options options;
78 scoped_refptr<Bus> bus = new Bus(options); local
81 bus->GetObjectProxy("org.chromium.TestService",
87 bus->GetObjectProxy("org.chromium.TestService",
94 bus->GetObjectProxy(
100 bus->ShutdownAndBlock();
104 Bus::Options options
105 scoped_refptr<Bus> bus = new Bus(options); local
148 scoped_refptr<Bus> bus = new Bus(options); local
196 scoped_refptr<Bus> bus = new Bus(options); local
228 scoped_refptr<Bus> bus = new Bus(options); local
260 scoped_refptr<Bus> bus = new Bus(options); local
278 scoped_refptr<Bus> bus = new Bus(options); local
289 scoped_refptr<Bus> bus = new Bus(options); local
310 scoped_refptr<Bus> bus = new Bus(options); local
355 scoped_refptr<Bus> bus = new Bus(bus_options); local
    [all...]
  /external/chromium_org/media/base/
audio_bus_unittest.cc 31 void VerifyParams(AudioBus* bus) {
32 EXPECT_EQ(kChannels, bus->channels());
33 EXPECT_EQ(kFrameCount, bus->frames());
68 void VerifyChannelData(AudioBus* bus) {
69 for (int i = 0; i < bus->channels(); ++i) {
71 bus->channel(i)) & (AudioBus::kChannelAlignment - 1));
72 std::fill(bus->channel(i), bus->channel(i) + bus->frames(), i);
75 for (int i = 0; i < bus->channels(); ++i
108 scoped_ptr<AudioBus> bus = AudioBus::Create(kChannels, kFrameCount); local
115 scoped_ptr<AudioBus> bus = AudioBus::Create(AudioParameters( local
130 scoped_ptr<AudioBus> bus = AudioBus::WrapVector(kFrameCount, data_); local
149 scoped_ptr<AudioBus> bus = AudioBus::WrapMemory(params, data.get()); local
203 scoped_ptr<AudioBus> bus = AudioBus::Create(kChannels, kFrameCount); local
264 scoped_ptr<AudioBus> bus = AudioBus::Create( local
304 scoped_ptr<AudioBus> bus = AudioBus::Create( local
324 scoped_ptr<AudioBus> bus = AudioBus::Create( local
386 scoped_ptr<AudioBus> bus = AudioBus::Create(kChannels, kFrameCount); local
    [all...]
audio_splicer_unittest.cc 57 scoped_ptr<AudioBus> bus = AudioBus::Create(kChannels, frames); local
58 buffer->ReadFrames(frames, 0, 0, bus.get());
61 if (bus->channel(ch)[i] != value)
112 scoped_ptr<AudioBus> bus = AudioBus::Create(kChannels, frames); local
113 crossfade_output->ReadFrames(frames, 0, 0, bus.get());
120 const float actual = bus->channel(ch)[i];
  /bionic/libc/kernel/uapi/linux/
cciss_ioctl.h 29 unsigned char bus; member in struct:_cciss_pci_info_struct
uhid.h 47 __u16 bus; member in struct:uhid_create_req
  /development/ndk/platforms/android-L/include/linux/
cciss_ioctl.h 29 unsigned char bus; member in struct:_cciss_pci_info_struct
uhid.h 47 __u16 bus; member in struct:uhid_create_req
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
HRTFElevation.cpp 71 RefPtr<AudioBus> bus; local
79 bus = concatenatedImpulseResponses;
80 audioBusMap.set(subjectName, bus);
82 bus = iterator->value;
84 size_t responseLength = bus->length();
88 bool isBusGood = responseLength == expectedLength && bus->numberOfChannels() == 2;
93 return bus;
147 RefPtr<AudioBus> bus(getConcatenatedImpulseResponsesForSubject(subjectName));
149 if (!bus)
156 // The concatenated impulse response is a bus containing al
    [all...]
SincResampler.cpp 138 RefPtr<AudioBus> bus = AudioBus::create(1, numberOfSourceFrames, false);
141 bus->setChannelMemory(0, buffer, numberOfSourceFrames);
143 m_sourceProvider->provideInput(bus.get(), numberOfSourceFrames);
159 virtual void provideInput(AudioBus* bus, size_t framesToProcess) OVERRIDE
161 ASSERT(m_source && bus); variable
162 if (!m_source || !bus)
165 float* buffer = bus->channel(0)->mutableData();
  /external/kernel-headers/original/uapi/linux/
cciss_ioctl.h 13 unsigned char bus; member in struct:_cciss_pci_info_struct
uhid.h 46 __u16 bus; member in struct:uhid_create_req
  /external/qemu/hw/core/
qdev.c 26 inherit from a particular bus (e.g. PCI or I2C) rather than
50 /* This is a nasty hack to allow passing a NULL bus to qdev_create. */
71 DeviceState *qdev_create(BusState *bus, const char *name)
88 if (!bus) {
92 NULL, "main-system-bus");
94 bus = main_system_bus;
96 if (t->info->bus_type != bus->type) {
97 /* TODO: Print bus type names. */
98 hw_error("Device '%s' on wrong bus type (%d/%d)", name,
99 t->info->bus_type, bus->type)
408 BusState *bus; local
424 int bus = next_scsi_bus++; local
440 BusState *bus; local
    [all...]
  /external/stressapptest/src/
os.h 30 const char kSysfsPath[] = "/sys/bus/pci/devices";
34 uint16 bus; member in struct:PCIDevice
65 // Takes a pointer, and returns the corresponding bus address.
70 // Takes a bus address and string, and prints the DIMM name
126 // 1. The write before the clflush is committed to memory bus;
127 // 2. The read after the clflush is hitting the memory bus.
201 // Open, read, write pci cfg through /proc/bus/pci. fd is /proc/pci file.
202 virtual int PciOpen(int bus, int device, int function);
  /frameworks/native/include/input/
InputDevice.h 30 bus(0), vendor(0), product(0), version(0) {
37 uint16_t bus; member in struct:android::InputDeviceIdentifier
  /hardware/intel/img/libdrm/libdrm/
xf86drmMode.c 603 * -EINVAL or invalid bus id
610 int domain, bus, dev, func; local
615 ret = sscanf(busid, "pci:%04x:%02x:%02x.%d", &domain, &bus, &dev, &func);
619 sprintf(pci_dev_dir, "/sys/bus/pci/devices/%04x:%02x:%02x.%d/drm",
620 domain, bus, dev, func);
638 sprintf(pci_dev_dir, "/sys/bus/pci/devices/%04x:%02x:%02x.%d/",
639 domain, bus, dev, func);
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/
cciss_ioctl.h 29 unsigned char bus; member in struct:_cciss_pci_info_struct
uhid.h 47 __u16 bus; member in struct:uhid_create_req
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/
cciss_ioctl.h 29 unsigned char bus; member in struct:_cciss_pci_info_struct
uhid.h 47 __u16 bus; member in struct:uhid_create_req
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/
cciss_ioctl.h 29 unsigned char bus; member in struct:_cciss_pci_info_struct
uhid.h 47 __u16 bus; member in struct:uhid_create_req
  /development/ndk/platforms/android-3/include/linux/
device.h 58 struct device * bus_find_device(struct bus_type *bus, struct device *start,
71 struct bus_type * bus; member in struct:device_driver
186 struct bus_type * bus; member in struct:device
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
device.h 58 struct device * bus_find_device(struct bus_type *bus, struct device *start,
71 struct bus_type * bus; member in struct:device_driver
186 struct bus_type * bus; member in struct:device

Completed in 827 milliseconds

12 3 4 5 6 7