Home
last modified time | relevance | path

Searched refs:start_ms (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/crypto/
H A Dpbkdf.c114 unsigned long long delta_ms, start_ms, end_ms; in threaded_qcrypto_pbkdf2_count_iters() local
117 if (qcrypto_pbkdf2_get_thread_cpu(&start_ms, errp) < 0) { in threaded_qcrypto_pbkdf2_count_iters()
132 delta_ms = end_ms - start_ms; in threaded_qcrypto_pbkdf2_count_iters()
/openbmc/qemu/scripts/simplebench/
H A Dbench_block_job.py63 start_ms = e['timestamp']['seconds'] * 1000000 + \
82 return {'seconds': (end_ms - start_ms) / 1000000.0}
/openbmc/u-boot/cmd/
H A Dsf.c71 static ulong bytes_per_second(unsigned int len, ulong start_ms) in bytes_per_second() argument
75 return len / (max(get_timer(start_ms) / 1024, 1UL)); in bytes_per_second()
77 return 1024 * len / max(get_timer(start_ms), 1UL); in bytes_per_second()