Searched refs:bo_size (Results 1 - 25 of 90) sorted by relevance

1234

/xsrc/external/mit/libdrm/dist/freedreno/kgsl/
H A Dkgsl_device.c60 dev->bo_size = sizeof(struct kgsl_bo);
/xsrc/external/mit/libdrm/dist/freedreno/msm/
H A Dmsm_device.c60 dev->bo_size = sizeof(struct msm_bo);
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/drm/
H A Dmsm_device.c58 dev->bo_size = sizeof(struct msm_bo);
H A Dfreedreno_priv.h100 int bo_size; member in struct:fd_device
234 VALGRIND_DISABLE_ADDR_ERROR_REPORTING_IN_RANGE(bo, bo->dev->bo_size);
235 VALGRIND_MAKE_MEM_NOACCESS(bo, bo->dev->bo_size);
242 VALGRIND_MAKE_MEM_DEFINED(bo, bo->dev->bo_size);
243 VALGRIND_ENABLE_ADDR_ERROR_REPORTING_IN_RANGE(bo, bo->dev->bo_size);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
H A Dvc4_screen.h86 uint32_t bo_size; member in struct:vc4_screen::vc4_bo_cache
93 uint32_t bo_size; member in struct:vc4_screen
H A Dvc4_bufmgr.c91 fprintf(stderr, " BOs size: %dkb\n", screen->bo_size / 1024);
93 fprintf(stderr, " BOs cached size: %dkb\n", cache->bo_size / 1024);
121 cache->bo_size -= bo->size;
174 screen->bo_size -= bo->size;
278 screen->bo_size += bo->size;
375 cache->bo_size += bo->size;
511 screen->bo_size += bo->size;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
H A Dvc4_screen.h86 uint32_t bo_size; member in struct:vc4_screen::vc4_bo_cache
93 uint32_t bo_size; member in struct:vc4_screen
H A Dvc4_bufmgr.c83 fprintf(stderr, " BOs size: %dkb\n", screen->bo_size / 1024);
85 fprintf(stderr, " BOs cached size: %dkb\n", cache->bo_size / 1024);
113 cache->bo_size -= bo->size;
166 screen->bo_size -= bo->size;
270 screen->bo_size += bo->size;
367 cache->bo_size += bo->size;
503 screen->bo_size += bo->size;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/v3d/
H A Dv3d_screen.h77 uint32_t bo_size; member in struct:v3d_screen
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/v3d/
H A Dv3d_screen.h77 uint32_t bo_size; member in struct:v3d_screen
H A Dv3d_bufmgr.c56 fprintf(stderr, " BOs size: %dkb\n", screen->bo_size / 1024);
177 screen->bo_size += bo->size;
221 screen->bo_size -= bo->size;
371 screen->bo_size += bo->size;
/xsrc/external/mit/libdrm/dist/freedreno/
H A Dfreedreno_priv.h106 int bo_size; member in struct:fd_device
237 VALGRIND_DISABLE_ADDR_ERROR_REPORTING_IN_RANGE(bo, bo->dev->bo_size);
238 VALGRIND_MAKE_MEM_NOACCESS(bo, bo->dev->bo_size);
245 VALGRIND_MAKE_MEM_DEFINED(bo, bo->dev->bo_size);
246 VALGRIND_ENABLE_ADDR_ERROR_REPORTING_IN_RANGE(bo, bo->dev->bo_size);
/xsrc/external/mit/MesaLib/dist/src/freedreno/drm/
H A Dmsm_device.c97 dev->bo_size = sizeof(struct msm_bo);
H A Dfreedreno_priv.h138 int bo_size; member in struct:fd_device
398 VALGRIND_DISABLE_ADDR_ERROR_REPORTING_IN_RANGE(bo, bo->dev->bo_size);
399 VALGRIND_MAKE_MEM_NOACCESS(bo, bo->dev->bo_size);
407 VALGRIND_MAKE_MEM_DEFINED(bo, bo->dev->bo_size);
408 VALGRIND_ENABLE_ADDR_ERROR_REPORTING_IN_RANGE(bo, bo->dev->bo_size);
/xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/
H A Dpanvk_vX_image.c139 unsigned bo_size = local in function:panvk_per_arch
145 view->bo = panfrost_bo_create(pdev, bo_size, 0, "Texture descriptor");
H A Dpanvk_vX_pipeline.c196 unsigned bo_size = 0; local in function:panvk_pipeline_builder_alloc_static_state_bo
206 bo_size = ALIGN_POT(bo_size, pan_alignment(RENDERER_STATE));
207 builder->stages[i].rsd_offset = bo_size;
208 bo_size += pan_size(RENDERER_STATE);
210 bo_size += pan_size(BLEND) * MAX2(pipeline->blend.state.rt_count, 1);
215 bo_size = ALIGN_POT(bo_size, pan_alignment(VIEWPORT));
216 builder->vpd_offset = bo_size;
217 bo_size
[all...]
/xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
H A Dv3dv_descriptor_set.c389 /* bo_size is for the descriptor related info that we need to have on a GPU
393 uint32_t bo_size = 0; local in function:v3dv_CreateDescriptorPool
419 bo_size += v3dv_X(device, descriptor_bo_size)(pCreateInfo->pPoolSizes[i].type) *
446 if (bo_size > 0) {
447 pool->bo = v3dv_bo_alloc(device, bo_size, "descriptor pool bo", true);
607 set_layout->bo_size = 0;
662 set_layout->binding[binding_number].descriptor_offset = set_layout->bo_size;
663 set_layout->bo_size +=
744 if (layout->bo_size) {
760 if (pool->current_offset + layout->bo_size <
1105 uint32_t bo_size = 0; local in function:v3dv_GetDescriptorSetLayoutSupport
[all...]
H A Dv3dv_query.c63 const uint32_t bo_size = query_groups * 1024; local in function:v3dv_CreateQueryPool
64 pool->bo = v3dv_bo_alloc(device, bo_size, "query", true);
69 if (!v3dv_bo_map(device, pool->bo, bo_size)) {
H A Dv3dv_bo.c51 fprintf(stderr, " BOs size: %dkb\n", device->bo_size / 1024);
145 device->bo_size -= bo->size;
258 device->bo_size += bo->size;
385 device->bo_size = 0;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/
H A Dnouveau_context.h50 unsigned bo_size; member in struct:nouveau_context::__anon141df9a00108
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/
H A Dnouveau_context.h50 unsigned bo_size; member in struct:nouveau_context::__anon7b06c5530108
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/asahi/
H A Dagx_blit.c57 unsigned bo_size = 4096; local in function:agx_build_reload_shader
59 struct agx_bo *bo = agx_bo_create(dev, bo_size, AGX_MEMORY_TYPE_SHADER);
75 assert(offset + binary.size < bo_size);
/xsrc/external/mit/libdrm/dist/radeon/
H A Dradeon_surface.h127 uint64_t bo_size; member in struct:radeon_surface
H A Dradeon_surface.c194 surf->bo_size = offset + surflevel->slice_size * surflevel->nblk_z * surf->array_size;
292 offset = surf->bo_size;
320 offset = surf->bo_size;
353 offset = surf->bo_size;
396 offset = surf->bo_size;
608 surf->bo_size = offset + surflevel->slice_size * surflevel->nblk_z * surf->array_size;
644 offset = surf->bo_size;
697 offset = surf->bo_size;
804 surf->bo_size, 0);
827 surf->stencil_tile_split, surf->bo_size,
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
H A Dsi_buffer.c50 res->bo_size = size;
170 new_buf = sscreen->ws->buffer_create(sscreen->ws, res->bo_size, 1 << res->bo_alignment_log2,
186 uint64_t last = start + res->bo_size - 1;
206 si_screen_clear_buffer(sscreen, &res->b.b, 0, res->bo_size, 0, SI_OP_SYNC_AFTER);
291 assert(sdst->bo_size == ssrc->bo_size);
668 res->bo_size = imported_buf->size;
672 res->memory_usage_kb = MAX2(1, res->bo_size / 1024);

Completed in 23 milliseconds

1234