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.c70 tc_assert(batch->num_total_call_slots <= TC_CALLS_PER_BATCH); in tc_batch_check()
87 struct tc_call *last = &batch->call[batch->num_total_call_slots]; in tc_batch_execute()
100 batch->num_total_call_slots = 0; in tc_batch_execute()
108 tc_assert(next->num_total_call_slots != 0); in tc_batch_flush()
111 p_atomic_add(&tc->num_offloaded_slots, next->num_total_call_slots); in tc_batch_flush()
138 if (unlikely(next->num_total_call_slots + num_call_slots > TC_CALLS_PER_BATCH)) { in tc_add_sized_call()
141 tc_assert(next->num_total_call_slots == 0); in tc_add_sized_call()
146 struct tc_call *call = &next->call[next->num_total_call_slots]; in tc_add_sized_call()
147 next->num_total_call_slots += num_call_slots; in tc_add_sized_call()
179 !next->num_total_call_slots; in tc_is_sync()
[all …]
Du_threaded_context.h343 unsigned num_total_call_slots; member