HomeSort by relevance Sort by last modified time
    Searched defs:sleep_us (Results 1 - 4 of 4) sorted by null

  /external/perfetto/tools/busy_threads/
busy_threads.cc 32 __attribute__((noreturn)) void BusyWait(long busy_us, long sleep_us) {
40 if (sleep_us > 0)
41 base::SleepMicroseconds(static_cast<unsigned>(sleep_us));
81 long sleep_us = period_us - busy_us; local
85 num_threads, busy_us, sleep_us);
87 std::thread th(BusyWait, busy_us, sleep_us);
  /external/mesa3d/src/gallium/drivers/r600/
r600_gpu_load.c 118 int sleep_us = period_us; local
122 if (sleep_us)
123 os_time_sleep(sleep_us);
131 sleep_us = MAX2(sleep_us - 1, 1);
133 sleep_us += 1;
  /external/mesa3d/src/gallium/drivers/radeon/
r600_gpu_load.c 135 int sleep_us = period_us; local
139 if (sleep_us)
140 os_time_sleep(sleep_us);
148 sleep_us = MAX2(sleep_us - 1, 1);
150 sleep_us += 1;
  /art/runtime/
thread_list.cc 895 useconds_t sleep_us = kThreadSuspendInitialSleepUs; local
1015 useconds_t sleep_us = kThreadSuspendInitialSleepUs; local
    [all...]

Completed in 166 milliseconds