Searched refs:devs (Results 1 - 25 of 49) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
H A Dcontext.cpp28 const ref_vector<device> &devs,
30 notify(notify), props(props), devs(devs) {
50 return map(evals(), devs);
27 context(const property_list & props,const ref_vector<device> & devs,const notify_action & notify) argument
H A Dplatform.cpp27 platform::platform() : adaptor_range(evals(), devs) {
36 devs.push_back(create<device>(*this, ldev));
H A Dcontext.hpp41 context(const property_list &props, const ref_vector<device> &devs,
63 const std::vector<intrusive_ref<device>> devs; member in class:clover::context
H A Dplatform.hpp46 std::vector<intrusive_ref<device>> devs;
H A Dprogram.cpp34 const ref_vector<device> &devs,
37 _devices(devs), _kernel_ref_counter(0) {
41 devs, binaries);
45 program::compile(const ref_vector<device> &devs, const std::string &opts, argument
48 _devices = devs;
50 for (auto &dev : devs) {
67 program::link(const ref_vector<device> &devs, const std::string &opts, argument
69 _devices = devs;
71 for (auto &dev : devs) {
33 program(clover::context & ctx,const ref_vector<device> & devs,const std::vector<module> & binaries) argument
H A Dprogram.hpp44 const ref_vector<device> &devs = {},
51 void compile(const ref_vector<device> &devs, const std::string &opts,
53 void link(const ref_vector<device> &devs, const std::string &opts,
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader.h77 * \param devs Array that will be filled with pointers to the devices
83 pipe_loader_probe(struct pipe_loader_device **devs, int ndev);
117 * \param devs Devices to release.
121 pipe_loader_release(struct pipe_loader_device **devs, int ndev);
134 pipe_loader_sw_probe_dri(struct pipe_loader_device **devs,
148 pipe_loader_sw_probe_kms(struct pipe_loader_device **devs, int fd);
158 pipe_loader_sw_probe_null(struct pipe_loader_device **devs);
168 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev);
189 pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev);
H A Dpipe_loader.c61 pipe_loader_probe(struct pipe_loader_device **devs, int ndev) argument
66 n += backends[i](&devs[n], MAX2(0, ndev - n));
72 pipe_loader_release(struct pipe_loader_device **devs, int ndev) argument
77 devs[i]->ops->release(&devs[i]);
H A Dpipe_loader_sw.c135 pipe_loader_sw_probe_dri(struct pipe_loader_device **devs, const struct drisw_loader_funcs *drisw_lf) argument
155 *devs = &sdev->base;
167 pipe_loader_sw_probe_kms(struct pipe_loader_device **devs, int fd) argument
190 *devs = &sdev->base;
203 pipe_loader_sw_probe_null(struct pipe_loader_device **devs) argument
223 *devs = &sdev->base;
233 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev) argument
238 if (!pipe_loader_sw_probe_null(devs)) {
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader.h77 * \param devs Array that will be filled with pointers to the devices
83 pipe_loader_probe(struct pipe_loader_device **devs, int ndev);
126 * \param devs Devices to release.
130 pipe_loader_release(struct pipe_loader_device **devs, int ndev);
143 pipe_loader_sw_probe_dri(struct pipe_loader_device **devs,
157 pipe_loader_sw_probe_kms(struct pipe_loader_device **devs, int fd);
167 pipe_loader_sw_probe_null(struct pipe_loader_device **devs);
177 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev);
198 pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev);
H A Dpipe_loader_sw.c138 pipe_loader_sw_probe_dri(struct pipe_loader_device **devs, const struct drisw_loader_funcs *drisw_lf) argument
158 *devs = &sdev->base;
170 pipe_loader_sw_probe_kms(struct pipe_loader_device **devs, int fd) argument
193 *devs = &sdev->base;
206 pipe_loader_sw_probe_null(struct pipe_loader_device **devs) argument
226 *devs = &sdev->base;
236 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev) argument
241 if (!pipe_loader_sw_probe_null(devs)) {
H A Dpipe_loader.c60 pipe_loader_probe(struct pipe_loader_device **devs, int ndev) argument
65 n += backends[i](&devs[n], MAX2(0, ndev - n));
71 pipe_loader_release(struct pipe_loader_device **devs, int ndev) argument
76 devs[i]->ops->release(&devs[i]);
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/
H A Dcontext.cpp28 const ref_vector<device> &devs,
30 notify(notify), props(props), devs(devs) {
62 return map(evals(), devs);
27 context(const property_list & props,const ref_vector<device> & devs,const notify_action & notify) argument
H A Dprogram.cpp35 const ref_vector<device> &devs,
37 context(ctx), _devices(devs), _kernel_ref_counter(0),
42 devs, binaries);
46 program::compile(const ref_vector<device> &devs, const std::string &opts, argument
49 _devices = devs;
51 for (auto &dev : devs) {
67 program::link(const ref_vector<device> &devs, const std::string &opts, argument
69 _devices = devs;
71 for (auto &dev : devs) {
34 program(clover::context & ctx,const ref_vector<device> & devs,const std::vector<binary> & binaries) argument
H A Dcontext.hpp47 context(const property_list &props, const ref_vector<device> &devs,
80 const std::vector<intrusive_ref<device>> devs; member in class:clover::context
H A Dprogram.hpp47 const ref_vector<device> &devs = {},
54 void compile(const ref_vector<device> &devs, const std::string &opts,
56 void link(const ref_vector<device> &devs, const std::string &opts,
H A Dplatform.hpp51 std::vector<intrusive_ref<device>> devs; member in class:clover::platform
H A Dplatform.cpp28 platform::platform() : adaptor_range(evals(), devs) {
41 devs.push_back(create<device>(*this, ldev));
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/api/
H A Dcontext.cpp36 auto devs = objs(d_devs, num_devs); local in function:clCreateContext
54 return desc(new context(props, devs, notify));
70 std::vector<cl_device_id> devs; local in function:clCreateContextFromType
80 devs.resize(num_devices);
81 ret = clGetDeviceIDs(d_platform, type, num_devices, devs.data(), 0);
85 return clCreateContext(d_props, num_devices, devs.data(), pfn_notify,
H A Dprogram.cpp83 auto devs = objs(d_devs, n); local in function:clCreateProgramWithBinary
90 }, devs))
124 return new program(ctx, devs, map(values(), result));
137 auto devs = objs(d_devs, n); local in function:clCreateProgramWithBuiltInKernels
141 }, devs))
179 auto devs = local in function:clBuildProgram
187 prog.compile(devs, opts);
188 prog.link(devs, opts, { prog });
191 }, devs)) {
212 auto devs local in function:clCompileProgram
255 std::vector<device *> devs; local in function:__anonba2b103d0810::validate_link_devices
342 auto devs = validate_link_devices(progs, all_devs, opts); local in function:clLinkProgram
[all...]
/xsrc/external/mit/ctwm/dist/cmake_files/
H A Dctags.cmake1 # Setup tagets to run ctags. Only really of interest to devs...
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/input/
H A Ddmxinputinit.c278 if (dmxInput->devs[j]->sendsCore)
279 _dmxChangePointerControl(dmxInput->devs[j], ctrl);
316 if (dmxInput->devs[j]->sendsCore)
317 _dmxKeyboardKbdCtrlProc(dmxInput->devs[j], ctrl);
346 if (dmxInput->devs[j]->sendsCore)
347 _dmxKeyboardBellProc(dmxInput->devs[j], percent);
547 for (i = 0; i < dmxInput->numDevs; i += dmxInput->devs[i]->binding)
548 if (dmxInput->devs[i]->process_input) {
550 miPointerUpdateSprite(dmxInput->devs[i]->pDevice);
552 dmxInput->devs[
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/api/
H A Dcontext.cpp36 auto devs = objs(d_devs, num_devs); local in function:clCreateContext
54 return desc(new context(props, devs, notify));
70 std::vector<cl_device_id> devs; local in function:clCreateContextFromType
80 devs.resize(num_devices);
81 ret = clGetDeviceIDs(d_platform, type, num_devices, devs.data(), 0);
85 return clCreateContext(d_props, num_devices, devs.data(), pfn_notify,
H A Dprogram.cpp135 auto devs = objs(d_devs, n); local in function:clCreateProgramWithBinary
142 }, devs))
176 return new program(ctx, devs, map(values(), result));
231 auto devs = objs(d_devs, n); local in function:clCreateProgramWithBuiltInKernels
235 }, devs))
273 auto devs = local in function:clBuildProgram
282 prog.compile(devs, opts);
283 prog.link(devs, opts, { prog });
286 }, devs)) {
307 auto devs local in function:clCompileProgram
351 std::vector<device *> devs; local in function:__anonfca01c240810::validate_link_devices
441 auto devs = validate_link_devices(progs, all_devs, opts); local in function:clLinkProgram
[all...]
/xsrc/external/mit/xorg-server/dist/os/
H A Dinputthread.c71 struct xorg_list devs; member in struct:__anon5e789ed60108
206 xorg_list_for_each_entry(old, &inputThreadInfo->devs, node) {
231 xorg_list_append(&dev->node, &inputThreadInfo->devs);
266 xorg_list_for_each_entry(dev, &inputThreadInfo->devs, node)
347 xorg_list_for_each_entry_safe(dev, tmp, &inputThreadInfo->devs, node) {
418 xorg_list_init(&inputThreadInfo->devs);
507 xorg_list_for_each_entry_safe(dev, next, &inputThreadInfo->devs, node) {
511 xorg_list_init(&inputThreadInfo->devs);

Completed in 19 milliseconds

12