HomeSort by relevance Sort by last modified time
    Searched refs:devs (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
context.cpp 30 const std::vector<device *> &devs) :
31 devs(devs), __props(props) {
36 return std::count(devs.begin(), devs.end(), dev);
context.hpp 36 const std::vector<clover::device *> &devs);
45 const std::vector<clover::device *> devs; member in struct:_cl_context
device.hpp 89 return devs.begin();
93 return devs.end();
97 return devs.front();
101 return devs.back();
105 std::vector<device> devs; member in class:clover::device_registry
program.cpp 34 const std::vector<clover::device *> &devs,
40 devs.begin(), devs.end(), binaries.begin());
44 _cl_program::build(const std::vector<clover::device *> &devs) {
48 for (auto dev : devs) {
  /external/mesa3d/src/gallium/state_trackers/clover/core/
context.cpp 30 const std::vector<device *> &devs) :
31 devs(devs), __props(props) {
36 return std::count(devs.begin(), devs.end(), dev);
context.hpp 36 const std::vector<clover::device *> &devs);
45 const std::vector<clover::device *> devs; member in struct:_cl_context
device.hpp 89 return devs.begin();
93 return devs.end();
97 return devs.front();
101 return devs.back();
105 std::vector<device> devs; member in class:clover::device_registry
program.cpp 34 const std::vector<clover::device *> &devs,
40 devs.begin(), devs.end(), binaries.begin());
44 _cl_program::build(const std::vector<clover::device *> &devs) {
48 for (auto dev : devs) {
  /external/openssh/
auth2-kbdint.c 48 char *lang, *devs; local
51 devs = packet_get_string(NULL);
54 debug("keyboard-interactive devs %s", devs);
57 authenticated = auth2_challenge(authctxt, devs);
59 xfree(devs);
  /external/libusb/examples/
lsusb.c 25 static void print_devs(libusb_device **devs)
30 while ((dev = devs[i++]) != NULL) {
46 libusb_device **devs; local
54 cnt = libusb_get_device_list(NULL, &devs);
58 print_devs(devs);
59 libusb_free_device_list(devs, 1);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipe-loader/
pipe_loader.h 70 * \param devs Array that will be filled with pointers to the devices
76 pipe_loader_probe(struct pipe_loader_device **devs, int ndev);
96 * \param devs Devices to release.
100 pipe_loader_release(struct pipe_loader_device **devs, int ndev);
112 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev);
126 pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev);
pipe_loader.c 45 pipe_loader_probe(struct pipe_loader_device **devs, int ndev)
50 n += backends[i](&devs[n], MAX2(0, ndev - n));
56 pipe_loader_release(struct pipe_loader_device **devs, int ndev)
61 devs[i]->ops->release(&devs[i]);
  /external/mesa3d/src/gallium/auxiliary/pipe-loader/
pipe_loader.h 70 * \param devs Array that will be filled with pointers to the devices
76 pipe_loader_probe(struct pipe_loader_device **devs, int ndev);
96 * \param devs Devices to release.
100 pipe_loader_release(struct pipe_loader_device **devs, int ndev);
112 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev);
126 pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev);
pipe_loader.c 45 pipe_loader_probe(struct pipe_loader_device **devs, int ndev)
50 n += backends[i](&devs[n], MAX2(0, ndev - n));
56 pipe_loader_release(struct pipe_loader_device **devs, int ndev)
61 devs[i]->ops->release(&devs[i]);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
linuxdevicemanager.h 46 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs);
49 virtual bool GetAudioDevices(bool input, std::vector<Device>* devs);
macdevicemanager.h 47 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs);
50 virtual bool GetAudioDevices(bool input, std::vector<Device>* devs);
win32devicemanager.h 49 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs);
52 virtual bool GetAudioDevices(bool input, std::vector<Device>* devs);
mobiledevicemanager.cc 37 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs);
48 bool MobileDeviceManager::GetVideoCaptureDevices(std::vector<Device>* devs) {
49 devs->clear();
61 devs->push_back(Device(name, id));
win32devicemanager.cc 88 static bool GetCoreAudioDevices(bool input, std::vector<Device>* devs);
89 static bool GetWaveDevices(bool input, std::vector<Device>* devs);
151 std::vector<Device>* devs) {
152 devs->clear();
155 if (!GetCoreAudioDevices(input, devs))
158 if (!GetWaveDevices(input, devs))
161 return FilterDevices(devs, kFilteredAudioDevicesName);
260 bool input, std::vector<Device>* devs) {
287 devs->push_back(dev);
305 bool GetWaveDevices(bool input, std::vector<Device>* devs) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/
context.cpp 30 const cl_device_id *devs,
36 if (!devs || !num_devs ||
40 if (any_of(is_zero<cl_device_id>(), devs, devs + num_devs))
52 std::vector<cl_device_id>(devs, devs + num_devs));
108 return scalar_property<cl_uint>(buf, size, size_ret, ctx->devs.size());
111 return vector_property<cl_device_id>(buf, size, size_ret, ctx->devs);
program.cpp 58 const cl_device_id *devs, const size_t *lengths,
64 if (!count || !devs || !lengths || !binaries)
69 }, devs, devs + count))
105 return new program(*ctx, { devs, devs + count },
135 clBuildProgram(cl_program prog, cl_uint count, const cl_device_id *devs,
141 if (bool(count) != bool(devs) ||
145 if (devs) {
148 }, devs, devs + count)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/api/
context.cpp 30 const cl_device_id *devs,
36 if (!devs || !num_devs ||
40 if (any_of(is_zero<cl_device_id>(), devs, devs + num_devs))
52 std::vector<cl_device_id>(devs, devs + num_devs));
108 return scalar_property<cl_uint>(buf, size, size_ret, ctx->devs.size());
111 return vector_property<cl_device_id>(buf, size, size_ret, ctx->devs);
program.cpp 58 const cl_device_id *devs, const size_t *lengths,
64 if (!count || !devs || !lengths || !binaries)
69 }, devs, devs + count))
105 return new program(*ctx, { devs, devs + count },
135 clBuildProgram(cl_program prog, cl_uint count, const cl_device_id *devs,
141 if (bool(count) != bool(devs) ||
145 if (devs) {
148 }, devs, devs + count)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
win_if_list.c 146 pcap_if_t *devs, *dev; local
149 if (pcap_findalldevs(&devs, err) < 0) {
154 for (dev = devs; dev; dev = dev->next) {
158 pcap_freealldevs(devs);
  /external/blktrace/btt/
Android.mk 4 LOCAL_SRC_FILES := args.c bt_timeline.c devmap.c devs.c dip_rb.c iostat.c \

Completed in 319 milliseconds

1 2 3 4 5 6 7