Home | History | Annotate | Download | only in log

Lines Matching refs:tv_nsec

34     uint32_t tv_nsec;
42 tv_nsec = T.tv_nsec;
47 tv_nsec = nsec;
58 tv_nsec = T.tv_nsec;
64 tv_nsec = c[4] | (c[5] << 8) | (c[6] << 16) | (c[7] << 24);
71 && (tv_nsec == static_cast<uint32_t>(T.tv_nsec));
81 && (tv_nsec < static_cast<uint32_t>(T.tv_nsec)));
91 && (tv_nsec > static_cast<uint32_t>(T.tv_nsec)));
107 return (tv_sec == T.tv_sec) && (tv_nsec == T.tv_nsec);
116 || ((tv_sec == T.tv_sec) && (tv_nsec < T.tv_nsec));
125 || ((tv_sec == T.tv_sec) && (tv_nsec > T.tv_nsec));
140 return static_cast<uint64_t>(tv_sec) * NS_PER_SEC + tv_nsec;
153 uint32_t tv_nsec;