OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NS_PER_S
(Results
1 - 7
of
7
) sorted by null
/bionic/libc/private/
bionic_constants.h
20
#define
NS_PER_S
1000000000
/bionic/libc/bionic/
clock.cpp
41
return (ts.tv_sec * CLOCKS_PER_SEC) + (ts.tv_nsec / (
NS_PER_S
/ CLOCKS_PER_SEC));
bionic_time_conversions.cpp
63
ts.tv_nsec +=
NS_PER_S
;
semaphore.cpp
238
if (abs_timeout == NULL || abs_timeout->tv_sec < 0 || abs_timeout->tv_nsec < 0 || abs_timeout->tv_nsec >=
NS_PER_S
) {
pthread_mutex.cpp
620
if (abs_timeout.tv_nsec >=
NS_PER_S
) {
622
abs_timeout.tv_nsec -=
NS_PER_S
;
/bionic/tests/
semaphore_test.cpp
97
if (ts.tv_nsec >=
NS_PER_S
) {
99
ts.tv_nsec -=
NS_PER_S
;
time_test.cpp
490
ts2.tv_nsec +=
NS_PER_S
;
Completed in 56 milliseconds