Home
last modified time | relevance | path

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

/aosp_15_r20/external/mesa3d/src/gallium/drivers/iris/
H A Diris_batch.c215 batch->exec_array_size = 128; in iris_init_batch()
217 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0])); in iris_init_batch()
219 rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(batch->exec_array_size)); in iris_init_batch()
308 while (batch->exec_count + count > batch->exec_array_size) { in ensure_exec_obj_space()
309 unsigned old_size = batch->exec_array_size; in ensure_exec_obj_space()
311 batch->exec_array_size *= 2; in ensure_exec_obj_space()
314 batch->exec_array_size * sizeof(batch->exec_bos[0])); in ensure_exec_obj_space()
318 BITSET_WORDS(batch->exec_array_size)); in ensure_exec_obj_space()
325 assert(batch->exec_array_size > batch->exec_count); in add_bo_to_batch()
479 sizeof(BITSET_WORD) * BITSET_WORDS(batch->exec_array_size)); in iris_batch_reset()
H A Diris_batch.h112 int exec_array_size; member
/aosp_15_r20/external/mesa3d/src/gallium/drivers/crocus/
H A 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()
294 while (batch->exec_count + count > batch->exec_array_size) { in ensure_exec_obj_space()
295 batch->exec_array_size *= 2; in ensure_exec_obj_space()
297 batch->exec_bos, batch->exec_array_size * sizeof(batch->exec_bos[0])); in ensure_exec_obj_space()
300 batch->exec_array_size * sizeof(batch->validation_list[0])); in ensure_exec_obj_space()
H A Dcrocus_batch.h112 int exec_array_size; member