Home
last modified time | relevance | path

Searched refs:slab_zalloc (Results 1 – 18 of 18) sorted by relevance

/third_party/mesa3d/src/util/
Dslab.h85 void *slab_zalloc(struct slab_child_pool *pool);
Dslab.c238 slab_zalloc(struct slab_child_pool *pool) in slab_zalloc() function
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_buffer_common.c290 transfer = slab_zalloc(&rctx->pool_transfers_unsync); in r600_buffer_get_transfer()
292 transfer = slab_zalloc(&rctx->pool_transfers); in r600_buffer_get_transfer()
/third_party/mesa3d/docs/relnotes/
D22.0.1.rst149 - util/slab: add slab_zalloc
D21.3.8.rst160 - util/slab: add slab_zalloc
D22.1.0.rst2977 - util/slab: add slab_zalloc
2980 - radeonsi: replace opencoded slab_zalloc
2981 - r600: replace opencoded slab_zalloc
2982 - zink: replace opencoded slab_zalloc
2983 - virgl: replace opencoded slab_zalloc
2984 - vc4: replace opencoded slab_zalloc
2985 - v3d: replace opencoded slab_zalloc
2986 - iris: replace opencoded slab_zalloc
2987 - lima: replace opencoded slab_zalloc
2988 - freedreno: replace opencoded slab_zalloc
[all …]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_buffer.c324 transfer = slab_zalloc(&sctx->pool_transfers_unsync); in si_buffer_get_transfer()
326 transfer = slab_zalloc(&sctx->pool_transfers); in si_buffer_get_transfer()
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_transfer.c204 trans = slab_zalloc(&ctx->transfer_pool); in etna_transfer_map()
/third_party/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_resource.c983 ptrans = slab_zalloc(&ctx->transfer_pool_unsync); in fd_resource_transfer_map()
985 ptrans = slab_zalloc(&ctx->transfer_pool); in fd_resource_transfer_map()
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_resource.c1648 map = slab_zalloc(&ice->transfer_pool_unsync); in crocus_transfer_map()
1650 map = slab_zalloc(&ice->transfer_pool); in crocus_transfer_map()
/third_party/mesa3d/src/gallium/drivers/virgl/
Dvirgl_resource.c868 trans = slab_zalloc(&vctx->transfer_pool); in virgl_resource_create_transfer()
/third_party/mesa3d/src/gallium/drivers/lima/
Dlima_resource.c650 trans = slab_zalloc(&ctx->transfer_pool); in lima_transfer_map()
/third_party/mesa3d/src/gallium/drivers/v3d/
Dv3d_resource.c263 trans = slab_zalloc(&v3d->transfer_pool); in v3d_resource_transfer_map()
/third_party/mesa3d/src/gallium/drivers/vc4/
Dvc4_resource.c156 trans = slab_zalloc(&vc4->transfer_pool); in vc4_resource_transfer_map()
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_resource.c2398 map = slab_zalloc(&ice->transfer_pool_unsync); in iris_transfer_map()
2400 map = slab_zalloc(&ice->transfer_pool); in iris_transfer_map()
/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_resource.c1696 trans = slab_zalloc(&ctx->transfer_pool_unsync); in create_transfer()
1698 trans = slab_zalloc(&ctx->transfer_pool); in create_transfer()
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_threaded_context.c2259 struct threaded_transfer *ttrans = slab_zalloc(&tc->pool_transfers); in tc_buffer_map()
2277 struct threaded_transfer *ttrans = slab_zalloc(&tc->pool_transfers); in tc_buffer_map()
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_resource.cpp1565 struct d3d12_transfer *trans = (struct d3d12_transfer *)slab_zalloc(transfer_pool); in d3d12_transfer_map()