Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/iris/
Diris_batch.c198 batch->exec_array_size = 100; in iris_init_batch()
200 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0])); in iris_init_batch()
202 malloc(batch->exec_array_size * sizeof(batch->validation_list[0])); in iris_init_batch()
252 while (batch->exec_count + count > batch->exec_array_size) { in ensure_exec_obj_space()
253 batch->exec_array_size *= 2; in ensure_exec_obj_space()
256 batch->exec_array_size * sizeof(batch->exec_bos[0])); in ensure_exec_obj_space()
259 batch->exec_array_size * sizeof(batch->validation_list[0])); in ensure_exec_obj_space()
Diris_batch.h88 int exec_array_size; member
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_batchbuffer.c145 batch->exec_array_size = 100; in intel_batchbuffer_init()
147 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0])); in intel_batchbuffer_init()
149 malloc(batch->exec_array_size * sizeof(batch->validation_list[0])); in intel_batchbuffer_init()
198 if (batch->exec_count == batch->exec_array_size) { in add_exec_bo()
199 batch->exec_array_size *= 2; in add_exec_bo()
202 batch->exec_array_size * sizeof(batch->exec_bos[0])); in add_exec_bo()
205 batch->exec_array_size * sizeof(batch->validation_list[0])); in add_exec_bo()
Dbrw_context.h516 int exec_array_size; member