OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MILLISECONDS_PER_SECOND
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/src/system_wrappers/source/
condition_variable_posix.cc
97
const int
MILLISECONDS_PER_SECOND
= 1000;
123
ts.tv_sec += maxTimeInMS /
MILLISECONDS_PER_SECOND
;
124
ts.tv_nsec += (maxTimeInMS - ((maxTimeInMS /
MILLISECONDS_PER_SECOND
)*
125
MILLISECONDS_PER_SECOND
)) * NANOSECONDS_PER_MILLISECOND;
/external/llvm/include/llvm/Support/
TimeValue.h
74
MILLISECONDS_PER_SECOND
= 1000, ///< One Thousand
235
return seconds_ *
MILLISECONDS_PER_SECOND
+
325
this->seconds_ = milliseconds /
MILLISECONDS_PER_SECOND
;
326
this->nanos_ = NanoSecondsType(milliseconds %
MILLISECONDS_PER_SECOND
) *
Completed in 76 milliseconds