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

1 2

  /external/mesa3d/src/gallium/drivers/vc4/
vc4_cl.c 63 uint32_t *current_handles = job->bo_handles.base;
64 uint32_t cl_hindex_count = cl_offset(&job->bo_handles) / 4;
81 out = cl_start(&job->bo_handles);
83 cl_end(&job->bo_handles, out);
vc4_screen.h 90 struct util_hash_table *bo_handles; member in struct:vc4_screen
vc4_job.c 45 for (int i = 0; i < cl_offset(&job->bo_handles) / 4; i++) {
85 vc4_init_cl(job, &job->bo_handles);
124 for (int i = 0; i < cl_offset(&job->bo_handles) / 4; i++) {
410 cl_ensure_space(&job->bo_handles, 6 * sizeof(uint32_t));
449 submit.bo_handles = (uintptr_t)job->bo_handles.base;
450 submit.bo_handle_count = cl_offset(&job->bo_handles) / 4;
vc4_bufmgr.h 107 util_hash_table_remove(screen->bo_handles,
  /external/mesa3d/src/gallium/drivers/vc5/
vc5_screen.h 77 struct util_hash_table *bo_handles; member in struct:vc5_screen
vc5_drm.h 95 __u64 bo_handles; member in struct:drm_vc5_submit_cl
vc5_job.c 127 uint32_t *bo_handles = (void *)(uintptr_t)job->submit.bo_handles; local
131 bo_handles = reralloc(job, bo_handles,
133 job->submit.bo_handles = (uintptr_t)(void *)bo_handles;
135 bo_handles[job->submit.bo_handle_count++] = bo->handle;
vc5_bufmgr.h 101 util_hash_table_remove(screen->bo_handles,
vc5_screen.c 69 util_hash_table_destroy(screen->bo_handles);
609 screen->bo_handles = util_hash_table_create(handle_hash, handle_compare);
  /bionic/libc/kernel/uapi/drm/
v3d_drm.h 50 __u64 bo_handles; member in struct:drm_v3d_submit_cl
98 __u32 bo_handles[4]; member in struct:drm_v3d_submit_tfu
virtgpu_drm.h 46 __u64 bo_handles; member in struct:drm_virtgpu_execbuffer
  /external/kernel-headers/original/uapi/drm/
v3d_drm.h 112 __u64 bo_handles; member in struct:drm_v3d_submit_cl
215 __u32 bo_handles[4]; member in struct:drm_v3d_submit_tfu
virtgpu_drm.h 67 __u64 bo_handles; member in struct:drm_virtgpu_execbuffer
  /external/mesa3d/src/gallium/winsys/radeon/drm/
radeon_drm_winsys.h 75 struct util_hash_table *bo_handles; member in struct:radeon_drm_winsys
  /external/mesa3d/src/gallium/winsys/virgl/drm/
virgl_drm_winsys.h 64 struct util_hash_table *bo_handles; member in struct:virgl_drm_winsys
virtgpu_drm.h 57 uint64_t bo_handles; member in struct:drm_virtgpu_execbuffer
virgl_drm_winsys.c 65 util_hash_table_remove(qdws->bo_handles,
121 util_hash_table_destroy(qdws->bo_handles);
419 res = util_hash_table_get(qdws->bo_handles, (void*)(uintptr_t)handle);
463 util_hash_table_set(qdws->bo_handles, (void *)(uintptr_t)handle, res);
503 util_hash_table_set(qdws->bo_handles, (void *)(uintptr_t)res->bo_handle, res);
689 eb.bo_handles = (unsigned long)(void *)cbuf->res_hlist;
791 qdws->bo_handles = util_hash_table_create(handle_hash, handle_compare);
  /external/libkmsxx/kms++/src/
dumbframebuffer.cpp 69 uint32_t bo_handles[4] = { m_planes[0].handle, m_planes[1].handle }; local
74 bo_handles, pitches, offsets, &id, 0);
extframebuffer.cpp 75 uint32_t bo_handles[4] = { m_planes[0].handle, m_planes[1].handle }; local
77 bo_handles, pitches.data(), offsets.data(), &id, 0);
  /external/libdrm/amdgpu/
amdgpu_internal.h 75 struct util_hash_table *bo_handles; member in struct:amdgpu_device
amdgpu_device.c 132 util_hash_table_destroy(dev->bo_handles);
241 dev->bo_handles = util_hash_table_create(handle_hash, handle_compare);
amdgpu_bo.c 174 util_hash_table_set(bo->dev->bo_handles,
304 bo = util_hash_table_get(dev->bo_handles,
386 util_hash_table_set(dev->bo_handles, (void*)(uintptr_t)bo->handle, bo);
405 util_hash_table_remove(dev->bo_handles,
  /external/libdrm/include/drm/
virtgpu_drm.h 60 __u64 bo_handles; member in struct:drm_virtgpu_execbuffer
  /external/libkmsxx/kms++/src/omap/
omapframebuffer.cpp 123 uint32_t bo_handles[4] = { m_planes[0].handle, m_planes[1].handle }; local
128 bo_handles, pitches, offsets, &id, 0);
  /external/mesa3d/include/drm-uapi/
vc4_drm.h 101 * and an attribute count), so those BO indices into bo_handles are
111 * uniform data has a __u32 index into bo_handles per texture
121 __u64 bo_handles; member in struct:drm_vc4_submit_cl

Completed in 319 milliseconds

1 2