Searched refs:exec_array_size (Results 1 - 10 of 10) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/
H A Diris_batch.c190 batch->exec_array_size = 100;
192 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0]));
194 malloc(batch->exec_array_size * sizeof(batch->validation_list[0]));
308 if (batch->exec_count == batch->exec_array_size) {
309 batch->exec_array_size *= 2;
312 batch->exec_array_size * sizeof(batch->exec_bos[0]));
315 batch->exec_array_size * sizeof(batch->validation_list[0]));
H A Diris_batch.h84 int exec_array_size; member in struct:iris_batch
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
H A Diris_batch.c203 batch->exec_array_size = 128;
205 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0]));
207 rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(batch->exec_array_size));
259 while (batch->exec_count + count > batch->exec_array_size) {
260 unsigned old_size = batch->exec_array_size;
262 batch->exec_array_size *= 2;
265 batch->exec_array_size * sizeof(batch->exec_bos[0]));
269 BITSET_WORDS(batch->exec_array_size));
276 assert(batch->exec_array_size > batch->exec_count);
425 sizeof(BITSET_WORD) * BITSET_WORDS(batch->exec_array_size));
[all...]
H A Diris_batch.h87 int exec_array_size; member in struct:iris_batch
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/
H A Dcrocus_batch.c232 batch->exec_array_size = 100;
234 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0]));
236 malloc(batch->exec_array_size * sizeof(batch->validation_list[0]));
296 while (batch->exec_count + count > batch->exec_array_size) {
297 batch->exec_array_size *= 2;
299 batch->exec_bos, batch->exec_array_size * sizeof(batch->exec_bos[0]));
302 batch->exec_array_size * sizeof(batch->validation_list[0]));
H A Dcrocus_batch.h112 int exec_array_size; member in struct:crocus_batch
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
H A Dintel_batchbuffer.c153 batch->exec_array_size = 100;
155 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0]));
157 malloc(batch->exec_array_size * sizeof(batch->validation_list[0]));
206 if (batch->exec_count == batch->exec_array_size) {
207 batch->exec_array_size *= 2;
210 batch->exec_array_size * sizeof(batch->exec_bos[0]));
213 batch->exec_array_size * sizeof(batch->validation_list[0]));
H A Dbrw_context.h514 int exec_array_size; member in struct:intel_batchbuffer
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
H A Dbrw_batch.c153 batch->exec_array_size = 100;
155 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0]));
157 malloc(batch->exec_array_size * sizeof(batch->validation_list[0]));
207 if (batch->exec_count == batch->exec_array_size) {
208 batch->exec_array_size *= 2;
211 batch->exec_array_size * sizeof(batch->exec_bos[0]));
214 batch->exec_array_size * sizeof(batch->validation_list[0]));
H A Dbrw_context.h505 int exec_array_size; member in struct:brw_batch

Completed in 17 milliseconds