Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/auxiliary/util/
Du_threaded_context.c84 tc_assert(batch->num_total_slots <= TC_SLOTS_PER_BATCH); in tc_batch_check()
195 uint64_t *last = &batch->slots[batch->num_total_slots]; in tc_batch_execute()
239 batch->num_total_slots = 0; in tc_batch_execute()
264 tc_assert(next->num_total_slots != 0); in tc_batch_flush()
268 p_atomic_add(&tc->num_offloaded_slots, next->num_total_slots); in tc_batch_flush()
294 if (unlikely(next->num_total_slots + num_slots > TC_SLOTS_PER_BATCH)) { in tc_add_sized_call()
297 tc_assert(next->num_total_slots == 0); in tc_add_sized_call()
302 struct tc_call_base *call = (struct tc_call_base*)&next->slots[next->num_total_slots]; in tc_add_sized_call()
303 next->num_total_slots += num_slots; in tc_add_sized_call()
333 !next->num_total_slots; in tc_is_sync()
[all …]
Du_threaded_context.h432 uint16_t num_total_slots; member