Searched defs:microseconds (Results 1 - 8 of 8) sorted by relevance

/external/icu4c/i18n/
H A Dutmscale.c15 #define microseconds (ticks * 10) macro
16 #define milliseconds (microseconds * 1000)
34 {microseconds, INT64_C(62135596800000000), INT64_C(-984472800485477580), INT64_C(860201606885477580), INT64_C(-9223372036854775804), INT64_C(9223372036854775804), INT64_C(62135596800000001), INT64_C(62135596799999999), INT64_C(5), INT64_C(-9223372036854775803), INT64_C(9223372036854775802)},
/external/chromium/base/
H A Dtime_posix.cc18 int64 microseconds = InMicroseconds(); local
20 if (microseconds >= Time::kMicrosecondsPerSecond) {
22 microseconds -= seconds * Time::kMicrosecondsPerSecond;
26 microseconds * Time::kNanosecondsPerMicrosecond};
63 // Combine seconds and microseconds in a 64-bit field containing microseconds
/external/llvm/include/llvm/Support/
H A DTimeValue.h204 /// @brief Retrieve the fractional part as microseconds;
205 uint32_t microseconds() const { function in class:llvm::sys::TimeValue
216 /// Returns the TimeValue as a number of microseconds. Note that the value
220 /// @brief Convert to a number of microseconds (can overflow)
298 /// @brief Set the nanoseconds component using a number of microseconds.
299 void microseconds ( int32_t micros ) { function in class:llvm::sys::TimeValue
312 void usec( int64_t microseconds ) {
313 this->seconds_ = microseconds / MICROSECONDS_PER_SECOND;
314 this->nanos_ = NanoSecondsType(microseconds % MICROSECONDS_PER_SECOND) *
/external/stressapptest/src/
H A Dsattypes.h157 inline bool sat_usleep(int32 microseconds) { argument
159 req.tv_sec = microseconds / 1000000;
160 // Convert microseconds argument to nano seconds.
161 req.tv_nsec = (microseconds % 1000000) * 1000;
/external/chromium/webkit/glue/
H A Dwebmediaplayer_impl.cc71 float microseconds = seconds * base::Time::kMicrosecondsPerSecond; local
72 float integer = ceilf(microseconds);
73 float difference = integer - microseconds;
76 if ((microseconds > 0 && difference > 0.5f) ||
77 (microseconds <= 0 && difference >= 0.5f)) {
81 // Now we can safely cast to int64 microseconds.
/external/sqlite/dist/orig/
H A Dsqlite3.c1550 ** least the number of microseconds given. ^The xCurrentTime()
1592 int (*xSleep)(sqlite3_vfs*, int microseconds);
24651 ** The argument is the number of microseconds we want to sleep.
24652 ** The return value is the number of microseconds of sleep actually
30516 unixSleep(sqlite3_vfs *NotUsed, int microseconds) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c1550 ** least the number of microseconds given. ^The xCurrentTime()
1592 int (*xSleep)(sqlite3_vfs*, int microseconds);
24651 ** The argument is the number of microseconds we want to sleep.
24652 ** The return value is the number of microseconds of sleep actually
30529 unixSleep(sqlite3_vfs *NotUsed, int microseconds) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1496 milliseconds