Home
last modified time | relevance | path

Searched refs:num_total_call_slots (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/util/
Du_threaded_context.c78 tc_assert(batch->num_total_call_slots <= TC_CALLS_PER_BATCH); in tc_batch_check()
108 struct tc_call *last = &batch->call[batch->num_total_call_slots]; in tc_batch_execute()
168 batch->num_total_call_slots = 0; in tc_batch_execute()
176 tc_assert(next->num_total_call_slots != 0); in tc_batch_flush()
180 p_atomic_add(&tc->num_offloaded_slots, next->num_total_call_slots); in tc_batch_flush()
207 if (unlikely(next->num_total_call_slots + num_call_slots > TC_CALLS_PER_BATCH)) { in tc_add_sized_call()
210 tc_assert(next->num_total_call_slots == 0); in tc_add_sized_call()
215 struct tc_call *call = &next->call[next->num_total_call_slots]; in tc_add_sized_call()
216 next->num_total_call_slots += num_call_slots; in tc_add_sized_call()
248 !next->num_total_call_slots; in tc_is_sync()
[all …]
Du_threaded_context.h346 unsigned num_total_call_slots; member