Home
last modified time | relevance | path

Searched refs:exec_array_size (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/iris/
Diris_batch.c209 batch->exec_array_size = 128; in iris_init_batch()
211 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0])); in iris_init_batch()
213 rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(batch->exec_array_size)); in iris_init_batch()
369 while (batch->exec_count + count > batch->exec_array_size) { in ensure_exec_obj_space()
370 unsigned old_size = batch->exec_array_size; in ensure_exec_obj_space()
372 batch->exec_array_size *= 2; in ensure_exec_obj_space()
375 batch->exec_array_size * sizeof(batch->exec_bos[0])); in ensure_exec_obj_space()
379 BITSET_WORDS(batch->exec_array_size)); in ensure_exec_obj_space()
386 assert(batch->exec_array_size > batch->exec_count); in add_bo_to_batch()
541 sizeof(BITSET_WORD) * BITSET_WORDS(batch->exec_array_size)); in iris_batch_reset()
Diris_batch.h93 int exec_array_size; member
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_batch.c231 batch->exec_array_size = 100; in crocus_init_batch()
233 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0])); in crocus_init_batch()
235 malloc(batch->exec_array_size * sizeof(batch->validation_list[0])); in crocus_init_batch()
296 while (batch->exec_count + count > batch->exec_array_size) { in ensure_exec_obj_space()
297 batch->exec_array_size *= 2; in ensure_exec_obj_space()
299 batch->exec_bos, batch->exec_array_size * sizeof(batch->exec_bos[0])); in ensure_exec_obj_space()
302 batch->exec_array_size * sizeof(batch->validation_list[0])); in ensure_exec_obj_space()
Dcrocus_batch.h112 int exec_array_size; member