/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_context_types.h | 33 void (*unpin)(struct intel_context *ce); member in struct:intel_context_ops
|
intel_context.c | 151 CE_TRACE(ce, "unpin\n"); 152 ce->ops->unpin(ce);
|
mock_engine.c | 183 .unpin = mock_context_unpin,
|
intel_ring_submission.c | 1363 .unpin = ring_context_unpin,
|
intel_lrc.c | 3021 .unpin = execlists_context_unpin, 4817 .unpin = execlists_context_unpin,
|
selftest_lrc.c | 2550 goto unpin; 2567 unpin:
|
/src/sys/external/bsd/drm2/dist/drm/virtio/ |
virtgpu_object.c | 90 .unpin = drm_gem_shmem_unpin,
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_ldu.c | 157 if (ld->fb->unpin) 158 ld->fb->unpin(ld->fb); 175 if (ld->fb && ld->fb->unpin) 176 ld->fb->unpin(ld->fb);
|
vmwgfx_kms.h | 217 * @unpin is called 222 int (*unpin)(struct vmw_framebuffer *fb); member in struct:vmw_framebuffer
|
vmwgfx_kms.c | 1364 vfb->unpin = vmw_framebuffer_unpin;
|
/src/sys/external/bsd/drm2/dist/include/drm/ |
drm_gem.h | 122 * @unpin: 124 * Unpin backing buffer. Used by the drm_gem_map_detach() helper. 128 void (*unpin)(struct drm_gem_object *obj); member in struct:drm_gem_object_funcs
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_cursor.c | 299 goto unpin; 354 unpin:
|
/src/sys/external/bsd/drm2/dist/drm/qxl/ |
qxl_object.c | 95 .unpin = qxl_gem_prime_unpin, 269 dev_warn(ddev->dev, "%p unpin not necessary\n", bo); 279 dev_err(ddev->dev, "%p validate failed for unpin\n", bo);
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_display.c | 129 * Handle unpin events outside the interrupt handler proper. 137 /* unpin of the old buffer */ 142 DRM_ERROR("failed to unpin buffer after flip\n"); 181 /* schedule unpin of the old buffer */ 210 goto unpin; 218 goto unpin; 255 unpin: 258 DRM_ERROR("failed to unpin new abo in error path\n");
|
amdgpu_dce_v10_0.c | 2394 goto unpin; 2447 unpin: 2573 DRM_ERROR("failed to reserve abo before unpin\n");
|
amdgpu_dce_v11_0.c | 2473 goto unpin; 2526 unpin: 2652 DRM_ERROR("failed to reserve abo before unpin\n");
|
amdgpu_dce_v6_0.c | 2289 goto unpin; 2342 unpin: 2463 DRM_ERROR("failed to reserve abo before unpin\n");
|
amdgpu_dce_v8_0.c | 2295 goto unpin; 2348 unpin: 2474 DRM_ERROR("failed to reserve abo before unpin\n");
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_gem.c | 588 * Use drm_gem_put_pages() to release the array and unpin all pages. 1368 if (obj->funcs && obj->funcs->unpin) 1369 obj->funcs->unpin(obj);
|