Home
last modified time | relevance | path

Searched refs:slab_alloc (Results 1 – 20 of 20) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/
Dpb_slab.c160 slab = slabs->slab_alloc(slabs->priv, heap, entry_size, group_index); in pb_slab_alloc()
218 slab_alloc_fn *slab_alloc, in pb_slabs_init() argument
234 slabs->slab_alloc = slab_alloc; in pb_slabs_init()
Dpb_slab.h133 slab_alloc_fn *slab_alloc; member
152 slab_alloc_fn *slab_alloc,
/third_party/mesa3d/src/util/
Dslab.h83 void *slab_alloc(struct slab_child_pool *pool);
Dslab.c206 slab_alloc(struct slab_child_pool *pool) in slab_alloc() function
288 return slab_alloc(&mempool->child); in slab_alloc_st()
/third_party/libuv/test/
Decho-server.c158 static void slab_alloc(uv_handle_t* handle, in slab_alloc() function
338 r = uv_udp_recv_start(&udpServer, slab_alloc, on_recv); in udp4_echo_start()
/third_party/mesa3d/src/gallium/drivers/r300/
Dr300_screen_buffer.c95 transfer = slab_alloc(&r300->pool_transfers); in r300_buffer_transfer_map()
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_buffer_common.c313 transfer = slab_alloc(&rctx->pool_transfers_unsync); in r600_buffer_get_transfer()
315 transfer = slab_alloc(&rctx->pool_transfers); in r600_buffer_get_transfer()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_buffer.c321 transfer = slab_alloc(&sctx->pool_transfers_unsync); in si_buffer_get_transfer()
323 transfer = slab_alloc(&sctx->pool_transfers); in si_buffer_get_transfer()
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_transfer.c204 trans = slab_alloc(&ctx->transfer_pool); in etna_transfer_map()
/third_party/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_resource.c959 ptrans = slab_alloc(&ctx->transfer_pool_unsync); in fd_resource_transfer_map()
961 ptrans = slab_alloc(&ctx->transfer_pool); in fd_resource_transfer_map()
/third_party/mesa3d/src/gallium/drivers/virgl/
Dvirgl_resource.c717 trans = slab_alloc(&vctx->transfer_pool); in virgl_resource_create_transfer()
/third_party/mesa3d/src/freedreno/drm/
Dmsm_ringbuffer_sp.c207 msm_ring = slab_alloc(&msm_submit->ring_pool); in msm_submit_sp_new_ringbuffer()
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_resource.c1634 map = slab_alloc(&ice->transfer_pool_unsync); in crocus_transfer_map()
1636 map = slab_alloc(&ice->transfer_pool); in crocus_transfer_map()
/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_resource.c1128 trans = slab_alloc(&ctx->transfer_pool_unsync); in create_transfer()
1130 trans = slab_alloc(&ctx->transfer_pool); in create_transfer()
/third_party/mesa3d/src/gallium/drivers/lima/
Dlima_resource.c660 trans = slab_alloc(&ctx->transfer_pool); in lima_transfer_map()
/third_party/mesa3d/src/gallium/drivers/vc4/
Dvc4_resource.c156 trans = slab_alloc(&vc4->transfer_pool); in vc4_resource_transfer_map()
/third_party/mesa3d/src/gallium/drivers/v3d/
Dv3d_resource.c255 trans = slab_alloc(&v3d->transfer_pool); in v3d_resource_transfer_map()
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_resource.cpp900 struct d3d12_transfer *trans = (struct d3d12_transfer *)slab_alloc(&ctx->transfer_pool); in d3d12_transfer_map()
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_resource.c2241 map = slab_alloc(&ice->transfer_pool_unsync); in iris_transfer_map()
2243 map = slab_alloc(&ice->transfer_pool); in iris_transfer_map()
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_threaded_context.c2151 struct threaded_transfer *ttrans = slab_alloc(&tc->pool_transfers); in tc_buffer_map()