OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NS_PER_S
(Results
1 - 5
of
5
) sorted by null
/bionic/libc/private/
bionic_constants.h
20
#define
NS_PER_S
1000000000
/external/ltp/testcases/realtime/tools/
ftqviz.py
34
NS_PER_S
= 1000000000
63
ns_per_sample =
NS_PER_S
/ sample_hz
/device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
cam_semaphore_tests.cpp
25
#define
NS_PER_S
1000000000
33
if (ts.tv_nsec >=
NS_PER_S
) {
35
ts.tv_nsec -=
NS_PER_S
;
43
return (int64_t)(ts_end.tv_sec - 1 - ts_start.tv_sec) *
NS_PER_S
+
44
ts_end.tv_nsec +
NS_PER_S
- ts_start.tv_nsec;
/device/generic/goldfish/ril/
atchannel.c
90
#define
NS_PER_S
1000000000
100
if (p_ts->tv_nsec >=
NS_PER_S
) {
102
p_ts->tv_nsec -=
NS_PER_S
;
/device/google/contexthub/firmware/os/platform/stm32/
rtc.c
27
#ifndef
NS_PER_S
28
#define
NS_PER_S
UINT64_C(1000000000)
173
} else if (delay > (
NS_PER_S
* 2 * RTC_WKUP_DOWNCOUNT_MAX)) {
174
delay =
NS_PER_S
* 2 * RTC_WKUP_DOWNCOUNT_MAX;
204
if (RTC_VALID_DELAY_FOR_PERIOD(delay,
NS_PER_S
))
208
periodNs =
NS_PER_S
;
209
periodNsRecip = U64_RECIPROCAL_CALCULATE(
NS_PER_S
);
279
return (time_s *
NS_PER_S
) + U64_DIV_BY_CONST_U16(((RTC_PREDIV_S - ssr) *
NS_PER_S
), (RTC_PREDIV_S + 1));
Completed in 1191 milliseconds