HomeSort by: relevance | last modified time | path
    Searched defs:handles (Results 1 - 25 of 36) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_lower_non_uniform_access.c 115 struct nu_handle handles[2]; local
136 assert(num_handles <= ARRAY_SIZE(handles));
137 if (nu_handle_init(&handles[num_handles], &tex->src[i].src))
150 if (i && handles[i].handle == handles[0].handle) {
151 handles[i].first = handles[0].first;
155 nir_ssa_def *equal_first = nu_handle_compare(options, b, &handles[i]);
162 nu_handle_rewrite(b, &handles[i]);
  /xsrc/external/mit/MesaLib/dist/src/drm-shim/
drm_shim.h 67 struct hash_table *handles; member in struct:shim_fd
  /xsrc/external/mit/glu/dist/src/libtess/
priorityq-heap.h 74 * Each node stores an index into an array "handles". Each handle
76 * represents that key (ie. nodes[handles[i].node].handle == i).
88 PQhandleElem *handles; member in struct:PriorityQ
104 #define __gl_pqHeapMinimum(pq) ((pq)->handles[(pq)->nodes[1].handle].key)
  /xsrc/external/mit/libdrm/dist/tests/tegra/
drm-test.c 171 uint32_t handles[4]; local
187 handles[0] = handle;
191 err = drmModeAddFB2(screen->fd, width, height, format, handles,
  /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/
panvk_sync.c 268 const uint32_t *handles, uint32_t count_handles,
273 .handles = (uint64_t) (uintptr_t) handles,
325 uint32_t handles[fenceCount];
330 handles[i] = fence->syncobj.temporary;
332 handles[i] = fence->syncobj.permanent;
336 return drm_syncobj_wait(device, handles, fenceCount, absolute_timeout(timeout), waitAll);
346 uint32_t handles[fenceCount]; local
351 handles[i] = fence->syncobj.permanent;
355 .handles = (uint64_t) (uintptr_t) handles
388 uint32_t handles[2], count = 0; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/
crocus_fence.c 202 .handles = (uintptr_t)&syncobj->handle,
350 uint32_t handles[ARRAY_SIZE(fence->fine)]; local
357 handles[handle_count++] = fine->syncobj->handle;
364 .handles = (uintptr_t)handles,
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
iris_fence.c 95 .handles = (uintptr_t)&syncobj->handle,
225 .handles = (uintptr_t)&syncobj->handle,
417 uint32_t handles[ARRAY_SIZE(fence->fine)]; local
424 handles[handle_count++] = fine->syncobj->handle;
431 .handles = (uintptr_t)handles,
iris_bufmgr.c 370 /* The binder handles its own allocations. Return non-zero here. */
399 /* The binder handles its own allocations. */
436 uint32_t handles[bo->deps_size * IRIS_BATCH_COUNT * 2]; local
444 handles[handle_count++] = r->handle;
446 handles[handle_count++] = w->handle;
459 .handles = (uintptr_t) handles,
2254 /* Handles to buffer objects belong to the device fd and are not
2258 * ownership of those handles is shared by those independent parties.
  /xsrc/external/mit/xorg-server.old/dist/hw/xwin/xlaunch/
main.cc 46 /// This is based on generic CWizard but handles the special dialogs
223 /// Basicly handles switching to proper page (skipping XDMCP or program page
569 HANDLE handles[2]; local
587 handles[hcount++] = pi.hProcess;
599 TerminateProcess(handles[hcount], (DWORD)-1);
618 TerminateProcess(handles[hcount], (DWORD)-1);
621 handles[hcount++] = pic.hProcess;
625 DWORD ret = WaitForMultipleObjects(hcount, handles, FALSE, INFINITE );
647 // Close process and thread handles.
  /xsrc/external/mit/libdrm/dist/tests/exynos/
exynos_fimg2d_test.c 730 uint32_t handles[4] = {0}, pitches[4] = {0}, offsets[4] = {0}; local
807 handles[0] = bo->handle;
812 DRM_FORMAT_XRGB8888, handles,
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_video_sprite.c 283 uint32_t handles[4]; member in struct:local_mode_fb_cmd2
292 f.handles[0] = frame->bo->handle;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/asahi/
agx_pipe.c 124 unreachable("Handles todo");
529 uint32_t *handles = calloc(sizeof(uint32_t), handle_count); local
533 handles[handle_i++] = handle;
536 agx_pool_get_bo_handles(&batch->pool, handles + handle_i);
539 agx_pool_get_bo_handles(&batch->pipeline_pool, handles + handle_i);
563 demo_mem_map(dev->memmap.ptr.cpu, dev->memmap.size, handles, handle_count,
566 free(handles);
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_video_sprite.c 363 uint32_t handles[4]; member in struct:local_mode_fb_cmd2
389 f.handles[0] = frame->bo->handle;
390 f.handles[1] = frame->bo->handle;
396 f.handles[0] = frame->bo->handle;
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/winsys/amdgpu/
radv_amdgpu_cs.c 59 struct drm_amdgpu_bo_list_entry *handles; member in struct:radv_amdgpu_cs
116 * BO list handles used by this request.
118 struct drm_amdgpu_bo_list_entry *handles; member in struct:radv_amdgpu_cs_request
173 free(cs->handles);
394 unsigned hash = cs->handles[i].bo_handle & (ARRAY_SIZE(cs->buffer_hash_table) - 1);
438 if (cs->handles[index].bo_handle == bo)
442 if (cs->handles[i].bo_handle == bo) {
463 realloc(cs->handles, new_count * sizeof(struct drm_amdgpu_bo_list_entry));
466 cs->handles = new_entries;
473 cs->handles[cs->num_buffers].bo_handle = bo
667 struct drm_amdgpu_bo_list_entry *handles = NULL; local
812 struct drm_amdgpu_bo_list_entry *handles = NULL; local
888 struct drm_amdgpu_bo_list_entry *handles = NULL; local
985 struct drm_amdgpu_bo_list_entry *handles = NULL; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/virgl/
virgl_context.c 1118 uint32_t handles[32]; local
1121 handles[i] = (unsigned long)(samplers[i]);
1123 virgl_encode_bind_sampler_states(vctx, shader, start_slot, num_samplers, handles);
  /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
anv_queue.c 2682 uint32_t *handles; local
2689 vk_multialloc_add(&ma, &handles, uint32_t, pWaitInfo->semaphoreCount);
2711 handles[handle_count] = impl->syncobj;
2725 handles, values, handle_count,
  /xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/
vn_physical_device.c 1265 VkPhysicalDevice *handles = NULL; local
1280 handles = vk_alloc(alloc, sizeof(*handles) * count, VN_DEFAULT_ALIGN,
1282 if (!handles) {
1304 handles[i] = vn_physical_device_to_handle(physical_dev);
1308 instance, vn_instance_to_handle(instance), &count, handles);
1312 vk_free(alloc, handles);
1322 vk_free(alloc, handles);
  /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/winsys/amdgpu/
radv_amdgpu_cs.c 53 struct drm_amdgpu_bo_list_entry *handles; member in struct:radv_amdgpu_cs
269 free(cs->handles);
471 unsigned hash = cs->handles[i].bo_handle &
515 if (cs->handles[index].bo_handle == bo)
519 if (cs->handles[i].bo_handle == bo) {
539 cs->handles = realloc(cs->handles, new_count * sizeof(struct drm_amdgpu_bo_list_entry));
543 cs->handles[cs->num_buffers].bo_handle = bo;
544 cs->handles[cs->num_buffers].bo_priority = priority;
615 child->handles[i].bo_handle
653 struct drm_amdgpu_bo_list_entry *handles; local
706 struct drm_amdgpu_bo_list_entry *handles = malloc(sizeof(struct drm_amdgpu_bo_list_entry) * total_buffer_count); local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/virgl/
virgl_context.c 918 uint32_t handles[32]; local
921 handles[i] = (unsigned long)(samplers[i]);
923 virgl_encode_bind_sampler_states(vctx, shader, start_slot, num_samplers, handles);
  /xsrc/external/mit/libdrm/dist/
xf86drmMode.h 121 uint32_t handles[4]; member in struct:_drmModeFB2
  /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/
tu_drm.c 272 /* grow the "bo idx" list (maps gem handles to index in the bo list) */
1470 .handles = (uintptr_t) (uint32_t[]) { fence->binary.temporary ?: fence->binary.permanent },
1513 const uint32_t *handles, uint32_t count_handles,
1517 .handles = (uint64_t) (uintptr_t) handles,
1567 uint32_t handles[fenceCount];
1570 handles[i] = fence->binary.temporary ?: fence->binary.permanent;
1573 return drm_syncobj_wait(device, handles, fenceCount, absolute_timeout(timeout), waitAll);
1582 uint32_t handles[fenceCount]; local
1586 handles[i] = fence->binary.permanent
1617 uint32_t handles[2], count = 0; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_context.h 84 uint64_t *handles; member in struct:st_bound_handles
361 /* Array of bound texture/image handles which are resident in the context.
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_context.h 82 uint64_t *handles; member in struct:st_bound_handles
317 /* Array of bound texture/image handles which are resident in the context.
  /xsrc/external/mit/libdrm/dist/tests/modetest/
modetest.c 1199 uint32_t handles[4] = {0}, pitches[4] = {0}, offsets[4] = {0}; local
1203 bo = bo_create(fd, fourcc, w, h, handles, pitches, offsets, pat, pattern_seed);
1208 if (drmModeAddFB2(fd, w, h, fourcc, handles, pitches, offsets, &fb_id, 0)) {
1840 uint32_t handles[4] = {0}, pitches[4] = {0}, offsets[4] = {0}; local
1860 bo = bo_create(dev->fd, DRM_FORMAT_ARGB8888, cw, ch, handles, pitches,
1869 ret = cursor_init(dev->fd, handles[0],
  /xsrc/external/mit/MesaLib.old/dist/include/drm-uapi/
drm_mode.h 511 __u32 handles[4]; member in struct:drm_mode_fb_cmd2

Completed in 51 milliseconds

1 2