OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kOneSecondInNanoseconds
(Results
1 - 2
of
2
) sorted by null
/system/chre/platform/linux/
system_timer.cc
30
constexpr uint64_t
kOneSecondInNanoseconds
= 1000000000;
33
ts->tv_sec = ns /
kOneSecondInNanoseconds
;
34
ts->tv_nsec = ns %
kOneSecondInNanoseconds
;
/system/chre/host/msm/daemon/
chre_daemon.cc
199
constexpr uint64_t
kOneSecondInNanoseconds
= 1000000000;
204
if (qTimerNanos > UINT64_MAX /
kOneSecondInNanoseconds
) {
209
qTimerNanos *=
kOneSecondInNanoseconds
;
214
(remainder *
kOneSecondInNanoseconds
+ qTimerFreq / 2) / qTimerFreq;
Completed in 62 milliseconds