Home | History | Annotate | Download | only in radeon

Lines Matching defs:counters

33  * Then, the user can sample the counters twice and calculate the average
49 union r600_grbm_counters *counters)
56 p_atomic_inc(&counters->named.spi_busy);
58 p_atomic_inc(&counters->named.spi_idle);
61 p_atomic_inc(&counters->named.gui_busy);
63 p_atomic_inc(&counters->named.gui_idle);
90 /* Update the counters. */
135 * If no counters were incremented, return the current counter status.
137 * the counters are updated.
142 union r600_grbm_counters counters;
144 memset(&counters, 0, sizeof(counters));
145 r600_update_grbm_counters(rscreen, &counters);
146 return counters.array[busy_index] ? 100 : 0;