Home
last modified time | relevance | path

Searched refs:sleeptime (Results 1 – 20 of 20) sorted by relevance

/external/skia/tools/skpbench/
D_hardware.py54 def __init__(self, message, sleeptime=60): argument
56 self.sleeptime = sleeptime
62 exact_value=None, name=None, sleeptime=60): argument
68 self.sleeptime = sleeptime
75 sleeptime=self.sleeptime)
79 sleeptime=self.sleeptime)
83 sleeptime=self.sleeptime)
D_hardware_pixel.py81 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
86 name='measured ddr clock', sleeptime=10),
D_hardware_nexus_6p.py81 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
88 name='ddr clock rate', sleeptime=10)] + \
D_hardware_pixel_c.py76 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
84 name='cpu_%i clock rate' % i, sleeptime=30)
D_hardware_pixel2.py108 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
113 name='measured ddr clock', sleeptime=10),
Dskpbench.py340 (exception.message, exception.sleeptime), file=sys.stderr)
345 time.sleep(exception.sleeptime)
/external/skqp/tools/skpbench/
D_hardware.py54 def __init__(self, message, sleeptime=60): argument
56 self.sleeptime = sleeptime
62 exact_value=None, name=None, sleeptime=60): argument
68 self.sleeptime = sleeptime
75 sleeptime=self.sleeptime)
79 sleeptime=self.sleeptime)
83 sleeptime=self.sleeptime)
D_hardware_pixel.py81 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
86 name='measured ddr clock', sleeptime=10),
D_hardware_nexus_6p.py81 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
88 name='ddr clock rate', sleeptime=10)] + \
D_hardware_pixel_c.py76 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
84 name='cpu_%i clock rate' % i, sleeptime=30)
D_hardware_pixel2.py108 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
113 name='measured ddr clock', sleeptime=10),
Dskpbench.py314 (exception.message, exception.sleeptime), file=sys.stderr)
319 time.sleep(exception.sleeptime)
/external/python/cpython2/Lib/bsddb/
Ddbutils.py62 sleeptime = _deadlock_MinSleepTime
72 'dbutils.DeadlockWrap: sleeping %1.3f\n' % sleeptime)
73 _sleep(sleeptime)
75 sleeptime *= 2
76 if sleeptime > _deadlock_MaxSleepTime:
77 sleeptime = _deadlock_MaxSleepTime
/external/llvm-project/openmp/runtime/test/
Domp_my_sleep.h15 static void my_sleep(double sleeptime) { in my_sleep() argument
16 DWORD ms = (DWORD) (sleeptime * 1000.0); in my_sleep()
24 static void my_sleep(double sleeptime) { in my_sleep() argument
26 ts.tv_sec = (time_t)sleeptime; in my_sleep()
27 ts.tv_nsec = (long)((sleeptime - (double)ts.tv_sec) * 1E9); in my_sleep()
/external/ltp/testcases/kernel/controllers/cpuctl/
Dcpuctl_latency_check_task.c79 unsigned int actual, actual_s, actual_us, sleeptime; in main() local
113 sleeptime = count * USECONDS; in main()
114 usleep(sleeptime); in main()
123 delta = actual - sleeptime; in main()
135 i++, sleeptime, actual, delta); in main()
/external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
Djitter.sh63 sleeptime=`awk -v me=$me -v n=$n -v sleepmax=$sleepmax 'BEGIN {
68 sleep .$sleeptime
/external/ltp/testcases/kernel/syscalls/clock_gettime/
Dleapsec01.c124 const struct timespec sleeptime = { 0, NSEC_PER_SEC / 2 }; in run_leapsec() local
156 clock_nanosleep(CLOCK_MONOTONIC, 0, &sleeptime, NULL); in run_leapsec()
/external/ltp/testcases/kernel/mem/mmapstress/
Dmmapstress10.c139 int sleeptime = SLEEPTIME; variable
212 sleeptime = atoi(optarg);
213 if (sleeptime < 0) {
770 (void)sleep(sleeptime);
/external/curl/src/
Dtool_operate.c514 long sleeptime = 0; in post_per_transfer() local
525 sleeptime = per->retry_sleep; in post_per_transfer()
531 sleeptime = LONG_MAX; in post_per_transfer()
533 sleeptime = (long)retry_after * 1000; /* milliseconds */ in post_per_transfer()
539 m[retry], sleeptime/1000L, per->retry_numretries); in post_per_transfer()
585 *delay = sleeptime; in post_per_transfer()
/external/webrtc/modules/audio_processing/
Daudio_processing_impl_locking_unittest.cc452 int sleeptime = rand_gen->RandInt(0, max_sleep); in SleepRandomMs() local
453 SleepMs(sleeptime); in SleepRandomMs()