HomeSort by relevance Sort by last modified time
    Searched full:size_in_dw (Results 1 - 3 of 3) sorted by null

  /external/mesa3d/src/gallium/drivers/r600/
compute_memory_pool.c 45 unsigned size_in_dw)
51 if (size_in_dw == 0) {
60 templ.width0 = size_in_dw;
97 * pool->shadow = (uint32_t*)CALLOC(4, pool->size_in_dw);
100 pool->size_in_dw = initial_size_in_dw;
102 pool->size_in_dw);
125 int64_t size_in_dw)
127 assert(size_in_dw <= pool->size_in_dw);
133 COMPUTE_DBG("* compute_memory_prealloc_chunk() size_in_dw = %ld\n"
    [all...]
compute_memory_pool.h 39 int64_t size_in_dw; ///Size of the chunk in dwords member in struct:compute_memory_item
50 int64_t size_in_dw; ///Size of the pool in dwords member in struct:compute_memory_pool
63 int64_t compute_memory_prealloc_chunk(struct compute_memory_pool* pool, int64_t size_in_dw); ///searches for an empty space in the pool, return with the pointer to the allocatable space in the pool, returns -1 on failure
86 struct compute_memory_item* compute_memory_alloc(struct compute_memory_pool* pool, int64_t size_in_dw); ///Creates pending allocations
evergreen_compute.c 561 evergreen_set_rat(ctx->cs_shader_state.shader, 0, pool->bo, 0, pool->size_in_dw * 4);
773 int size_in_dw = (templ->width0+3) / 4; local
775 result->chunk = compute_memory_alloc(rscreen->global_pool, size_in_dw);

Completed in 1085 milliseconds