Searched refs:exec_count (Results 1 – 6 of 6) sorted by relevance
/third_party/icu/icu4c/source/test/perf/collperf/ |
D | collperf.cpp | 145 int32_t exec_count; member in CmdIter 149 exec_count = 0; in CmdIter() 158 virtual long getOperationsPerIteration(){return exec_count ? exec_count : 1;} in getOperationsPerIteration() 161 exec_count = 0; in call() 169 while (ucol_next(iter, status) != UCOL_NULLORDER) exec_count++; in icu_forward_null() 174 while (ucol_next(iter, status) != UCOL_NULLORDER) exec_count++; in icu_forward_len() 179 while (ucol_previous(iter, status) != UCOL_NULLORDER) exec_count++; in icu_backward_null() 184 while (ucol_previous(iter, status) != UCOL_NULLORDER) exec_count++; in icu_backward_len() 194 int32_t exec_count; member in CmdIterAll 205 exec_count = 0; in CmdIterAll() [all …]
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
D | crocus_batch.c | 105 fprintf(stderr, "Validation list (length %d):\n", batch->exec_count); in dump_validation_list() 107 for (int i = 0; i < batch->exec_count; i++) { in dump_validation_list() 128 for (int i = 0; i < batch->exec_count; i++) { in decode_get_bo() 230 batch->exec_count = 0; in crocus_init_batch() 272 if (index < batch->exec_count && batch->exec_bos[index] == bo) in find_exec_index() 276 for (index = 0; index < batch->exec_count; index++) { in find_exec_index() 296 while (batch->exec_count + count > batch->exec_array_size) { in ensure_exec_obj_space() 361 batch->validation_list[batch->exec_count] = in crocus_use_bo() 368 bo->index = batch->exec_count; in crocus_use_bo() 369 batch->exec_bos[batch->exec_count] = bo; in crocus_use_bo() [all …]
|
D | crocus_batch.h | 111 int exec_count; member
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
D | iris_batch.c | 104 fprintf(stderr, "BO list (length %d):\n", batch->exec_count); in dump_bo_list() 106 for (int i = 0; i < batch->exec_count; i++) { in dump_bo_list() 138 for (int i = 0; i < batch->exec_count; i++) { in decode_get_bo() 207 batch->exec_count = 0; in iris_init_batch() 354 if (index < batch->exec_count && batch->exec_bos[index] == bo) in find_exec_index() 358 for (index = 0; index < batch->exec_count; index++) { in find_exec_index() 369 while (batch->exec_count + count > batch->exec_array_size) { in ensure_exec_obj_space() 386 assert(batch->exec_array_size > batch->exec_count); in add_bo_to_batch() 390 batch->exec_bos[batch->exec_count] = bo; in add_bo_to_batch() 393 BITSET_SET(batch->bos_written, batch->exec_count); in add_bo_to_batch() [all …]
|
D | iris_batch.h | 92 int exec_count; member
|
/third_party/libdrm/intel/ |
D | intel_bufmgr_gem.c | 120 int exec_count; member 416 for (i = 0; i < bufmgr_gem->exec_count; i++) { in drm_intel_gem_dump_validation_list() 499 if (bufmgr_gem->exec_count == bufmgr_gem->exec_size) { in drm_intel_add_validate_buffer2() 514 index = bufmgr_gem->exec_count; in drm_intel_add_validate_buffer2() 526 bufmgr_gem->exec_count++; in drm_intel_add_validate_buffer2() 2268 for (i = 0; i < bufmgr_gem->exec_count; i++) { in drm_intel_update_buffer_offsets2() 2343 execbuf.buffer_count = bufmgr_gem->exec_count; in do_exec2() 2377 bufmgr_gem->exec_count), in do_exec2() 2379 bufmgr_gem->exec_count), in do_exec2() 2392 for (i = 0; i < bufmgr_gem->exec_count; i++) { in do_exec2() [all …]
|