HomeSort by: relevance | last modified time | path
    Searched refs:device (Results 1 - 25 of 975) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/tests/
state_pool.c 39 struct anv_device device = { local
44 pthread_mutex_init(&device.mutex, NULL);
45 anv_bo_cache_init(&device.bo_cache, &device);
48 anv_state_pool_init(&state_pool, &device, "test", 4096, 0, 256);
58 pthread_mutex_destroy(&device.mutex);
state_pool_free_list_only.c 38 struct anv_device device = { local
43 pthread_mutex_init(&device.mutex, NULL);
44 anv_bo_cache_init(&device.bo_cache, &device);
45 anv_state_pool_init(&state_pool, &device, "test", 4096, 0, 4096);
67 pthread_mutex_destroy(&device.mutex);
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/nir/
invocation.hpp 32 class device;
34 void check_for_libclc(const device &dev);
37 nir_shader *load_libclc_nir(const device &dev, std::string &r_log);
42 binary spirv_to_nir(const binary &bin, const device &dev, std::string &r_log);
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/vdpau/
preemption.c 32 * A callback to notify the client application that a device's display has
35 void vlVdpPreemptionCallback(VdpDevice device, void *context)
43 VdpStatus vlVdpPreemptionCallbackRegister(VdpDevice device,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/vdpau/
preemption.c 32 * A callback to notify the client application that a device's display has
35 void vlVdpPreemptionCallback(VdpDevice device, void *context)
43 VdpStatus vlVdpPreemptionCallbackRegister(VdpDevice device,
  /xsrc/external/mit/libdrm/dist/tests/
drmdevice.c 36 print_device_info(drmDevicePtr device, int i, bool print_revision)
38 printf("device[%i]\n", i);
39 printf("+-> available_nodes %#04x\n", device->available_nodes);
42 if (device->available_nodes & 1 << j)
43 printf("| +-> nodes[%d] %s\n", j, device->nodes[j]);
45 printf("+-> bustype %04x\n", device->bustype);
46 if (device->bustype == DRM_BUS_PCI) {
48 printf("| +-> domain %04x\n",device->businfo.pci->domain);
49 printf("| +-> bus %02x\n", device->businfo.pci->bus);
50 printf("| +-> dev %02x\n", device->businfo.pci->dev)
117 drmDevicePtr device; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/llvm/
invocation.hpp 35 const device &device,
40 const device &device,
  /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/tests/
state_pool.c 40 struct anv_device device = { local
45 pthread_mutex_init(&device.mutex, NULL);
48 anv_state_pool_init(&state_pool, &device, 4096, 256, 0);
58 pthread_mutex_destroy(&device.mutex);
  /xsrc/external/mit/libdrm/dist/tests/util/
kms.h 32 int util_open(const char *device, const char *module);
  /xsrc/external/mit/MesaLib/dist/src/vulkan/util/
vk_object.c 34 vk_object_base_init(struct vk_device *device,
40 base->device = device;
52 vk_free(&base->device->alloc, base->object_name);
56 vk_object_alloc(struct vk_device *device,
61 void *ptr = vk_alloc2(&device->alloc, alloc, size, 8,
66 vk_object_base_init(device, (struct vk_object_base *)ptr, obj_type);
72 vk_object_zalloc(struct vk_device *device,
77 void *ptr = vk_zalloc2(&device->alloc, alloc, size, 8,
82 vk_object_base_init(device, (struct vk_object_base *)ptr, obj_type)
    [all...]
vk_queue.h 95 vk_queue_init(struct vk_queue *queue, struct vk_device *device,
102 #define vk_foreach_queue(queue, device) \
103 list_for_each_entry(struct vk_queue, queue, &(device)->queues, link)
105 #define vk_foreach_queue_safe(queue, device) \
106 list_for_each_entry_safe(struct vk_queue, queue, &(device)->queues, link)
  /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
anv_gem_stubs.c 31 anv_gem_create(struct anv_device *device, uint64_t size)
43 anv_gem_close(struct anv_device *device, uint32_t gem_handle)
49 anv_gem_create_regions(struct anv_device *device, uint64_t anv_bo_size,
57 anv_gem_mmap(struct anv_device *device, uint32_t gem_handle,
71 anv_gem_munmap(struct anv_device *device, void *p, uint64_t size)
77 anv_gem_userptr(struct anv_device *device, void *mem, size_t size)
89 anv_gem_busy(struct anv_device *device, uint32_t gem_handle)
95 anv_gem_wait(struct anv_device *device, uint32_t gem_handle, int64_t *timeout_ns)
101 anv_gem_execbuffer(struct anv_device *device,
108 anv_gem_set_tiling(struct anv_device *device,
    [all...]
anv_device.c 92 struct anv_device *device = (struct anv_device *)data; local
93 struct anv_instance *instance = device->physical->instance;
170 get_device_extensions(const struct anv_physical_device *device,
174 .KHR_8bit_storage = device->info.ver >= 8,
175 .KHR_16bit_storage = device->info.ver >= 8,
177 .KHR_buffer_device_address = device->has_a64_buffer_access,
187 .KHR_external_fence = device->has_syncobj_wait,
188 .KHR_external_fence_fd = device->has_syncobj_wait,
194 .KHR_fragment_shading_rate = device->info.ver >= 11,
207 device->use_softpin && device->perf &
787 struct anv_physical_device *device = local
2816 struct anv_device *device = v_batch; local
2863 struct anv_device *device = (struct anv_device*)driver_ctx; local
2881 struct anv_device *device = (struct anv_device*)driver_ctx; local
2900 struct anv_device *device; local
    [all...]
anv_wsi_display.c 36 ANV_FROM_HANDLE(anv_device, device, _device);
40 fence = vk_object_zalloc(&device->vk, allocator, sizeof (*fence),
43 return vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY);
48 &device->physical->wsi_device,
56 vk_free2(&device->vk.alloc, allocator, fence);
67 ANV_FROM_HANDLE(anv_device, device, _device);
71 fence = vk_object_zalloc(&device->vk, allocator, sizeof (*fence),
79 _device, &device->physical->wsi_device,
85 vk_free2(&device->vk.alloc, allocator, fence);
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/llvm/
invocation.hpp 35 const device &device,
40 const device &device,
47 const device &dev,
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
radv_sqtt.c 39 radv_se_is_disabled(struct radv_device *device, unsigned se)
42 return device->physical_device->rad_info.cu_mask[se][0] == 0;
46 gfx10_get_thread_trace_ctrl(struct radv_device *device, bool enable)
54 if (device->physical_device->rad_info.chip_class == GFX10_3)
61 radv_emit_thread_trace_start(struct radv_device *device, struct radeon_cmdbuf *cs,
64 uint32_t shifted_size = device->thread_trace.buffer_size >> SQTT_BUFFER_ALIGN_SHIFT;
65 struct radeon_info *rad_info = &device->physical_device->rad_info;
69 uint64_t va = radv_buffer_get_va(device->thread_trace.bo);
70 uint64_t data_va = ac_thread_trace_get_data_va(rad_info, &device->thread_trace, va, se);
72 int first_active_cu = ffs(device->physical_device->rad_info.cu_mask[se][0])
509 struct radv_device *device = queue->device; local
565 struct radv_device *device = queue->device; local
621 struct radv_device *device = queue->device; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
device.cpp 24 #include "core/device.hpp"
45 device::device(clover::platform &platform, pipe_loader_device *ldev) : function in class:device
56 device::~device() {
64 device::operator==(const device &dev) const {
69 device::type() const {
77 unreachable("Unknown device type.");
82 device::vendor_id() const
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/
xf86platformBus.h 64 xf86_platform_device_odev_attributes(struct xf86_platform_device *device)
66 return device->attribs;
72 struct xf86_platform_device *device = &xf86_platform_devices[index]; local
74 return device->attribs;
82 /* path to kernel device node - Linux e.g. /dev/dri/card0 */
84 /* system device path - Linux e.g. /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 */
90 /* Major number of the device node pointed to by ODEV_ATTRIB_PATH */
92 /* Minor number of the device node pointed to by ODEV_ATTRIB_PATH */
110 _xf86_get_platform_device_attrib(struct xf86_platform_device *device, int attrib, int (*fake)[0])
114 return xf86_platform_device_odev_attributes(device)->path
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
v3dv_bo.c 46 bo_dump_stats(struct v3dv_device *device)
48 struct v3dv_bo_cache *cache = &device->bo_cache;
50 fprintf(stderr, " BOs allocated: %d\n", device->bo_count);
51 fprintf(stderr, " BOs size: %dkb\n", device->bo_size / 1024);
95 bo_from_cache(struct v3dv_device *device, uint32_t size, const char *name)
97 struct v3dv_bo_cache *cache = &device->bo_cache;
114 if (!v3dv_bo_wait(device, bo, 0)) {
128 bo_free(struct v3dv_device *device,
135 v3dv_bo_unmap(device, bo);
140 int ret = v3dv_ioctl(device->pdevice->render_fd, DRM_IOCTL_GEM_CLOSE, &c)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
anv_gem_stubs.c 39 anv_gem_create(struct anv_device *device, uint64_t size)
54 anv_gem_close(struct anv_device *device, uint32_t gem_handle)
60 anv_gem_mmap(struct anv_device *device, uint32_t gem_handle,
80 anv_gem_userptr(struct anv_device *device, void *mem, size_t size)
86 anv_gem_busy(struct anv_device *device, uint32_t gem_handle)
92 anv_gem_wait(struct anv_device *device, uint32_t gem_handle, int64_t *timeout_ns)
98 anv_gem_execbuffer(struct anv_device *device,
105 anv_gem_set_tiling(struct anv_device *device,
112 anv_gem_set_caching(struct anv_device *device, uint32_t gem_handle,
119 anv_gem_set_domain(struct anv_device *device, uint32_t gem_handle
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
nouveau_screen.h 37 struct nouveau_device *device; member in struct:nouveau_screen
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
nouveau_screen.h 37 struct nouveau_device *device; member in struct:nouveau_screen
  /xsrc/external/mit/xinput/dist/src/
setmode.c 35 XDevice *device; local
46 fprintf(stderr, "unable to find device '%s'\n", argv[0]);
59 device = XOpenDevice(display, info->id);
61 if (device) {
62 XSetDeviceMode(display, device, mode);
66 fprintf(stderr, "Unable to open device\n");
setptr.c 34 XDevice *device; local
51 fprintf(stderr, "unable to find device '%s'\n", argv[0]);
55 device = XOpenDevice(display, info->id);
57 if (device) {
58 XChangePointerDevice(display, device, xaxis, yaxis);
62 fprintf(stderr, "Unable to open device\n");
  /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
radv_wsi.c 73 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
75 return wsi_common_get_surface_support(&device->wsi_device,
86 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
88 return wsi_common_get_surface_capabilities(&device->wsi_device,
98 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
100 return wsi_common_get_surface_capabilities2(&device->wsi_device,
110 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
112 return wsi_common_get_surface_capabilities2ext(&device->wsi_device,
123 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
125 return wsi_common_get_surface_formats(&device->wsi_device
    [all...]

Completed in 26 milliseconds

1 2 3 4 5 6 7 8 91011>>