Home | History | Annotate | Download | only in log

Lines Matching refs:tv_nsec

33 #define LOG_TIME_NSEC(t) ((t)->tv_nsec & (UINT32_MAX >> 2))
45 uint32_t tv_nsec;
52 tv_nsec(static_cast<uint32_t>(T.tv_nsec)) {
55 : tv_sec(sec), tv_nsec(nsec) {
68 tv_nsec = static_cast<uint32_t>(T.tv_nsec);
76 tv_nsec = c[4] | (static_cast<uint32_t>(c[5]) << 8) |
84 (tv_nsec == static_cast<uint32_t>(T.tv_nsec));
92 (tv_nsec < static_cast<uint32_t>(T.tv_nsec)));
100 (tv_nsec > static_cast<uint32_t>(T.tv_nsec)));
121 return (tv_sec == T.tv_sec) && (tv_nsec == T.tv_nsec);
128 ((tv_sec == T.tv_sec) && (tv_nsec < T.tv_nsec));
135 ((tv_sec == T.tv_sec) && (tv_nsec > T.tv_nsec));
155 return static_cast<uint64_t>(tv_sec) * NS_PER_SEC + tv_nsec;
159 tv_nsec / (NS_PER_SEC / US_PER_SEC);
163 tv_nsec / (NS_PER_SEC / MS_PER_SEC);
178 uint32_t tv_nsec;