| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/ |
| nv04_state_fb.c | 57 unsigned bo_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR; local 74 s->bo, 0, bo_flags); 86 s->bo, 0, bo_flags);
|
| nv20_state_fb.c | 85 unsigned bo_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR; local 102 s->bo, 0, bo_flags); 115 s->bo, 0, bo_flags);
|
| nv10_state_fb.c | 100 unsigned bo_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR; local 128 s->bo, 0, bo_flags); 141 s->bo, 0, bo_flags);
|
| nv10_state_tex.c | 160 const int bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART | NOUVEAU_BO_VRAM; local 227 s->bo, tx_format, bo_flags | NOUVEAU_BO_OR, 233 s->bo, s->offset, bo_flags);
|
| nv20_state_tex.c | 164 const int bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART | NOUVEAU_BO_VRAM; local 273 s->bo, tx_format, bo_flags | NOUVEAU_BO_OR, 279 s->bo, s->offset, bo_flags);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/ |
| nv04_state_fb.c | 57 unsigned bo_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR; local 74 s->bo, 0, bo_flags); 86 s->bo, 0, bo_flags);
|
| nv20_state_fb.c | 85 unsigned bo_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR; local 102 s->bo, 0, bo_flags); 115 s->bo, 0, bo_flags);
|
| nv10_state_fb.c | 100 unsigned bo_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR; local 128 s->bo, 0, bo_flags); 141 s->bo, 0, bo_flags);
|
| nv10_state_tex.c | 160 const int bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART | NOUVEAU_BO_VRAM; local 227 s->bo, tx_format, bo_flags | NOUVEAU_BO_OR, 233 s->bo, s->offset, bo_flags);
|
| nv20_state_tex.c | 164 const int bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART | NOUVEAU_BO_VRAM; local 273 s->bo, tx_format, bo_flags | NOUVEAU_BO_OR, 279 s->bo, s->offset, bo_flags);
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| anv_intel.c | 76 uint64_t bo_flags = ANV_BO_EXTERNAL; local 78 bo_flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; 80 bo_flags |= EXEC_OBJECT_PINNED; 83 pCreateInfo->fd, bo_flags, &mem->bo);
|
| anv_allocator.c | 431 uint64_t bo_flags) 436 pool->bo_flags = bo_flags; 448 if (!(pool->bo_flags & EXEC_OBJECT_PINNED)) { 491 if (!(pool->bo_flags & EXEC_OBJECT_PINNED)) 501 const bool use_softpin = !!(pool->bo_flags & EXEC_OBJECT_PINNED); 514 if (!(pool->bo_flags & EXEC_OBJECT_PINNED)) 525 const bool use_softpin = !!(pool->bo_flags & EXEC_OBJECT_PINNED); 645 bo->flags = pool->bo_flags; 660 if (!(pool->bo_flags & EXEC_OBJECT_PINNED) [all...] |
| anv_android.c | 304 uint64_t bo_flags = ANV_BO_EXTERNAL; 306 bo_flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; 308 bo_flags |= EXEC_OBJECT_PINNED; 311 dma_buf, bo_flags, &mem->bo); 460 uint64_t bo_flags = ANV_BO_EXTERNAL; local 462 bo_flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; 464 bo_flags |= EXEC_OBJECT_PINNED; 466 result = anv_bo_cache_import(device, &device->bo_cache, dma_buf, bo_flags, &bo);
|
| anv_device.c | 2282 uint64_t bo_flags = local 2288 anv_bo_pool_init(&device->batch_bo_pool, device, bo_flags); 2295 bo_flags &= ~EXEC_OBJECT_SUPPORTS_48B_ADDRESS; 2300 bo_flags); 2307 bo_flags); 2314 bo_flags); 2322 bo_flags); 2747 uint64_t bo_flags = 0; local 2751 bo_flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; 2760 bo_flags |= EXEC_OBJECT_WRITE [all...] |
| anv_private.h | 658 uint64_t bo_flags; member in struct:anv_block_pool 790 uint64_t bo_flags); 802 uint64_t bo_flags); 840 uint64_t bo_flags; member in struct:anv_bo_pool 846 uint64_t bo_flags); 881 uint64_t size, uint64_t bo_flags, 886 uint64_t bo_flags, struct anv_bo **bo_out); 889 int fd, uint64_t bo_flags,
|
| /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/ |
| anv_allocator.c | 1579 uint64_t bo_flags = 0; local 1582 bo_flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; 1585 bo_flags |= EXEC_OBJECT_CAPTURE; 1589 bo_flags |= EXEC_OBJECT_WRITE; 1593 bo_flags |= EXEC_OBJECT_ASYNC; 1596 bo_flags |= EXEC_OBJECT_PINNED; 1598 return bo_flags; 1627 const uint32_t bo_flags = local 1629 assert(bo_flags == (bo_flags & ANV_BO_CACHE_SUPPORTED_FLAGS)) 1770 const uint32_t bo_flags = local 1866 const uint32_t bo_flags = local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nvc0/ |
| nvc0_miptree.c | 330 uint32_t bo_flags; local 384 bo_flags = mt->base.domain | NOUVEAU_BO_NOSNOOP; 387 bo_flags |= NOUVEAU_BO_CONTIG; 389 ret = nouveau_bo_new(dev, bo_flags, 4096, mt->total_size, &bo_config,
|
| nvc0_vbo.c | 255 const uint32_t bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART; local 260 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_VTX_TMP, bo_flags, bo); 284 const uint32_t bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART; local 295 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_VTX_TMP, bo_flags, bo);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv50/ |
| nv50_miptree.c | 340 uint32_t bo_flags; local 388 bo_flags = mt->base.domain | NOUVEAU_BO_NOSNOOP; 390 bo_flags |= NOUVEAU_BO_CONTIG; 392 ret = nouveau_bo_new(dev, bo_flags, 4096, mt->total_size, &bo_config,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nvc0/ |
| nvc0_miptree.c | 451 uint32_t bo_flags; local 533 bo_flags = mt->base.domain | NOUVEAU_BO_NOSNOOP; 536 bo_flags |= NOUVEAU_BO_CONTIG; 538 ret = nouveau_bo_new(dev, bo_flags, 4096, mt->total_size, &bo_config,
|
| nvc0_vbo.c | 254 const uint32_t bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART; local 259 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_VTX_TMP, bo_flags, bo); 283 const uint32_t bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART; local 294 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_VTX_TMP, bo_flags, bo);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv50/ |
| nv50_miptree.c | 344 uint32_t bo_flags; local 385 bo_flags = mt->base.domain | NOUVEAU_BO_NOSNOOP; 387 bo_flags |= NOUVEAU_BO_CONTIG; 389 ret = nouveau_bo_new(dev, bo_flags, 4096, mt->total_size, &bo_config,
|
| /xsrc/external/mit/xf86-video-nouveau/dist/src/ |
| nv50_exa.c | 99 uint32_t bo_flags; local 101 bo_flags = nvpix->shared ? NOUVEAU_BO_GART : NOUVEAU_BO_VRAM; 102 bo_flags |= is_src ? NOUVEAU_BO_RD : NOUVEAU_BO_WR; 128 PUSH_REFN (push, bo, bo_flags);
|
| nvc0_exa.c | 101 uint32_t bo_flags; local 103 bo_flags = nvpix->shared ? NOUVEAU_BO_GART : NOUVEAU_BO_VRAM; 104 bo_flags |= is_src ? NOUVEAU_BO_RD : NOUVEAU_BO_WR; 130 PUSH_REFN (push, bo, bo_flags);
|
| /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/winsys/amdgpu/ |
| radv_amdgpu_bo.c | 49 uint32_t bo_flags, 55 if ((bo_flags & RADEON_FLAG_VA_UNCACHED) && ws->info.chip_class >= GFX9) 58 if (!(bo_flags & RADEON_FLAG_READ_ONLY))
|