/external/igt-gpu-tools/tests/i915/ |
D | gem_ppgtt.c | 47 static drm_intel_bo *create_bo(drm_intel_bufmgr *bufmgr, in create_bo() function 75 buf->bo = create_bo(bufmgr, pixel); in scratch_buf_init() 111 dst[child] = create_bo(bufmgr, ~0); in fork_rcs_copy() 183 dst[child] = create_bo(bufmgr, ~0); in fork_bcs_copy() 198 src[0] = create_bo(dst[child]->bufmgr, in fork_bcs_copy() 200 src[1] = create_bo(dst[child]->bufmgr, in fork_bcs_copy() 210 src[0] = create_bo(dst[child]->bufmgr, in fork_bcs_copy() 212 src[1] = create_bo(dst[child]->bufmgr, in fork_bcs_copy()
|
D | gem_read_read_speed.c | 115 static drm_intel_bo *create_bo(drm_intel_bufmgr *bufmgr, in create_bo() function 136 src = create_bo(bufmgr, "src"); in run() 137 bcs = create_bo(bufmgr, "bcs"); in run() 138 rcs = create_bo(bufmgr, "rcs"); in run()
|
D | gem_gtt_cpu_tlb.c | 53 create_bo(int fd) in create_bo() function 98 handle = create_bo(fd);
|
D | gem_tiled_pread_pwrite.c | 94 create_bo(int fd) in create_bo() function 130 handle_target = create_bo(fd);
|
D | gem_pread_after_blit.c | 61 create_bo(uint32_t val) in create_bo() function 221 src[0] = create_bo(start[0]); 222 src[1] = create_bo(start[1]);
|
D | gem_tiled_pread_basic.c | 65 create_bo(int fd) in create_bo() function 128 handle = create_bo(fd);
|
D | gem_tiled_wc.c | 58 create_bo(int fd) in create_bo() function 118 handle = create_bo(fd);
|
D | gem_concurrent_all.c | 698 drm_intel_bo *(*create_bo)(const struct buffers *b); member 813 b->src[i] = b->mode->create_bo(b); in buffers_create() 814 b->dst[i] = b->mode->create_bo(b); in buffers_create() 816 b->spare = b->mode->create_bo(b); in buffers_create() 1669 .create_bo = unmapped_create_bo, 1676 .create_bo = unmapped_create_bo, 1683 .create_bo = unmapped_create_bo, 1691 .create_bo = snoop_create_bo, 1699 .create_bo = userptr_create_bo, 1707 .create_bo = dmabuf_create_bo, [all …]
|
D | gem_tiled_wb.c | 62 create_bo(int fd) in create_bo() function 143 handle = create_bo(fd);
|
D | gem_tiled_blits.c | 65 create_bo(uint32_t start_val) in create_bo() function 133 bo[i] = create_bo(start); in run_test()
|
D | gem_tiled_swapping.c | 73 create_bo(int fd) in create_bo() function 202 bo_handles[n] = create_bo(fd);
|
D | gem_tiled_fence_blits.c | 51 static uint32_t create_bo(int fd, uint32_t start_val) in create_bo() function 166 bo[i] = create_bo(fd, start); in run_test()
|
D | gem_linear_blits.c | 126 create_bo(int fd, uint32_t val) in create_bo() function 171 handle[i] = create_bo(fd, start); in run_test()
|
D | gen3_render_linear_blits.c | 288 create_bo(int fd, uint32_t val) in create_bo() function 354 handle[i] = create_bo(fd, start);
|
D | gen3_render_tiledy_blits.c | 288 create_bo(int fd, uint32_t val) in create_bo() function 362 handle[i] = create_bo(fd, start);
|
D | gen3_render_tiledx_blits.c | 288 create_bo(int fd, uint32_t val) in create_bo() function 362 handle[i] = create_bo(fd, start);
|
D | gen3_render_mixed_blits.c | 301 create_bo(int fd, uint32_t val, int tiling) in create_bo() function 376 handle[i] = create_bo(fd, start, tiling[i] = i % 3);
|
D | gen3_mixed_blits.c | 407 create_bo(int fd, uint32_t val, int tiling) in create_bo() function 482 handle[i] = create_bo(fd, start, tiling[i] = i % 3);
|
D | gem_userptr_blits.c | 412 create_bo(int fd, uint32_t val) in create_bo() function 578 arg.handle = create_bo(fd, 0); in test_invalid_gtt_mapping() 1383 gpu[i] = create_bo(fd, start); in test_coherency() 1601 bo[num_obj] = create_bo(fd, 0); in test_unmap() 1635 bo[num_obj] = create_bo(fd, 0); in test_unmap_after_close()
|
/external/mesa3d/src/panfrost/lib/ |
D | pan_bo.c | 61 struct drm_panfrost_create_bo create_bo = { .size = size }; in panfrost_bo_alloc() local 68 create_bo.flags |= PANFROST_BO_HEAP; in panfrost_bo_alloc() 70 create_bo.flags |= PANFROST_BO_NOEXEC; in panfrost_bo_alloc() 73 ret = drmIoctl(dev->fd, DRM_IOCTL_PANFROST_CREATE_BO, &create_bo); in panfrost_bo_alloc() 79 bo = pan_lookup_bo(dev, create_bo.handle); in panfrost_bo_alloc() 82 bo->size = create_bo.size; in panfrost_bo_alloc() 83 bo->ptr.gpu = create_bo.offset; in panfrost_bo_alloc() 84 bo->gem_handle = create_bo.handle; in panfrost_bo_alloc()
|
/external/igt-gpu-tools/lib/ |
D | igt_panfrost.c | 60 struct drm_panfrost_create_bo create_bo = { in igt_panfrost_gem_new() local 64 do_ioctl(fd, DRM_IOCTL_PANFROST_CREATE_BO, &create_bo); in igt_panfrost_gem_new() 66 bo->handle = create_bo.handle; in igt_panfrost_gem_new() 67 bo->offset = create_bo.offset; in igt_panfrost_gem_new()
|
/external/igt-gpu-tools/tests/ |
D | prime_nv_test.c | 303 create_bo(drm_intel_bufmgr *ibufmgr, uint32_t val, int width, int height) in create_bo() function 329 src_bo = create_bo(bufmgr, 0xaa55aa55, 256, 1); in test_i915_blt_fill_nv_read()
|
/external/mesa3d/docs/relnotes/ |
D | 19.1.0.rst | 434 - panfrost: Cleanup needless if in create_bo
|