Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_emulate_loops.c194 struct const_value counter_value; in try_unroll_loop() local
215 counter_value.Src = counter; in try_unroll_loop()
216 counter_value.Value = 0.0f; in try_unroll_loop()
217 counter_value.HasValue = 0; in try_unroll_loop()
218 counter_value.C = c; in try_unroll_loop()
221 rc_for_all_writes_mask(inst, update_const_value, &counter_value); in try_unroll_loop()
223 if(!counter_value.HasValue){ in try_unroll_loop()
227 DBG("Initial counter value is %f\n", counter_value.Value); in try_unroll_loop()
288 iterations = (int) ceilf((limit_value - counter_value.Value) / in try_unroll_loop()
294 iterations = (int) floorf((limit_value - counter_value.Value) / in try_unroll_loop()
/external/libchrome/base/trace_event/
Dprocess_memory_maps_dump_provider.cc68 uint64_t counter_value = 0; in ReadCounterBytes() local
69 int res = sscanf(counter_line, "%*s %" SCNu64 " kB", &counter_value); in ReadCounterBytes()
71 return counter_value * 1024; in ReadCounterBytes()