Home
last modified time | relevance | path

Searched refs:microseconds (Results 1 – 25 of 34) sorted by relevance

12

/external/bluetooth/glib/glib/
Dgtimer.c140 gulong *microseconds) in g_timer_elapsed() argument
154 if (microseconds) in g_timer_elapsed()
155 *microseconds = (elapsed / 1000) % 1000000; in g_timer_elapsed()
161 g_usleep (gulong microseconds) in g_usleep() argument
164 Sleep (microseconds / 1000); in g_usleep()
168 request.tv_sec = microseconds / G_USEC_PER_SEC; in g_usleep()
169 request.tv_nsec = 1000 * (microseconds % G_USEC_PER_SEC); in g_usleep()
176 request.tv_sec = microseconds / G_USEC_PER_SEC; in g_usleep()
177 request.tv_nsec = 1000 * (microseconds % G_USEC_PER_SEC); in g_usleep()
188 if (microseconds > G_MAXLONG) in g_usleep()
[all …]
Dgtimer.h53 gulong *microseconds);
55 void g_usleep (gulong microseconds);
58 glong microseconds);
/external/skia/bench/
DBenchSysTimer_mach.cpp40 if ((end_clock.microseconds - start_clock.microseconds) < 0) { in intervalInMSec()
43 + end_clock.microseconds in intervalInMSec()
44 - start_clock.microseconds) / 1000.0; in intervalInMSec()
47 duration_clock += (end_clock.microseconds - start_clock.microseconds) in intervalInMSec()
/external/llvm/include/llvm/Support/
DTimeValue.h208 uint32_t microseconds() const { in microseconds() function
302 void microseconds ( int32_t micros ) { in microseconds() function
315 void usec( int64_t microseconds ) { in usec() argument
316 this->seconds_ = microseconds / MICROSECONDS_PER_SECOND; in usec()
317 this->nanos_ = NanoSecondsType(microseconds % MICROSECONDS_PER_SECOND) * in usec()
/external/chromium/base/
Dtime_posix.cc18 int64 microseconds = InMicroseconds(); in ToTimeSpec() local
20 if (microseconds >= Time::kMicrosecondsPerSecond) { in ToTimeSpec()
22 microseconds -= seconds * Time::kMicrosecondsPerSecond; in ToTimeSpec()
26 microseconds * Time::kNanosecondsPerMicrosecond}; in ToTimeSpec()
Dprocess_util_mac.mm383 (r)->tv_usec = (a)->microseconds; \
/external/icu4c/i18n/
Dutmscale.c15 #define microseconds (ticks * 10) macro
16 #define milliseconds (microseconds * 1000)
34 …{microseconds, INT64_C(62135596800000000), INT64_C(-984472800485477580), INT64_C(860201606885477…
/external/webkit/Source/JavaScriptCore/runtime/
DTimeoutChecker.cpp70 unsigned time = info.user_time.seconds * 1000 + info.user_time.microseconds / 1000; in getCPUTime()
71 time += info.system_time.seconds * 1000 + info.system_time.microseconds / 1000; in getCPUTime()
/external/llvm/lib/Support/
DTimer.cpp141 Result.WallTime = now.seconds() + now.microseconds() / 1000000.0; in getCurrentTime()
142 Result.UserTime = user.seconds() + user.microseconds() / 1000000.0; in getCurrentTime()
143 Result.SystemTime = sys.seconds() + sys.microseconds() / 1000000.0; in getCurrentTime()
/external/libvpx/
Dusage_cx.dox6 of time in microseconds the encoder should spend working on the frame. For
Dusage_dx.dox9 parameter controls the amount of time in microseconds the decoder should
Dusage.dox112 parameter. This parameter indicates the amount of time, in microseconds
/external/iptables/extensions/
Dlibxt_RATEEST.man9 Rate measurement interval, in seconds, milliseconds or microseconds.
/external/chromium/webkit/glue/
Dwebmediaplayer_impl.cc71 float microseconds = seconds * base::Time::kMicrosecondsPerSecond; in ConvertSecondsToTimestamp() local
72 float integer = ceilf(microseconds); in ConvertSecondsToTimestamp()
73 float difference = integer - microseconds; in ConvertSecondsToTimestamp()
76 if ((microseconds > 0 && difference > 0.5f) || in ConvertSecondsToTimestamp()
77 (microseconds <= 0 && difference >= 0.5f)) { in ConvertSecondsToTimestamp()
/external/iproute2/tc/
DREADME.last22 where microseconds and seconds fields are separate.
/external/llvm/lib/Support/Unix/
DProcess.inc125 user_time.microseconds(0);
127 sys_time.microseconds(0);
/external/blktrace/
DREADME106 %u - Time (processing - microseconds)
/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3.h757 int (*xSleep)(sqlite3_vfs*, int microseconds);
/external/sqlite/dist/
Dsqlite3.h1042 int (*xSleep)(sqlite3_vfs*, int microseconds);
/external/sqlite/dist/orig/
Dsqlite3.h1042 int (*xSleep)(sqlite3_vfs*, int microseconds);
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-P2P360 interval values in microseconds. If the second pair is included, that
/external/libpcap/
DCHANGES214 - Changed to write out time stamps with 32-bit seconds and microseconds
/external/blktrace/doc/
Dblktrace.tex611 \emph{u} & Elapsed value in microseconds (\emph{-t} command line option) \\ \hline
/external/tcpdump/
DCHANGES810 (microseconds) worth of precision. Fix uid bugs.
/external/libpcap/doc/
Dpcap.txt777 'ts_accur' option, then this field is expressed in microseconds.

12