Lines Matching defs:tv_nsec
53 int64_t tv_nsec;
80 ret.tv_nsec = (li.QuadPart % 10000000) * 100;
93 li.QuadPart = ts.tv_nsec / 100 + (ts.tv_sec + FILE_TIME_OFFSET_SECS) * 10000000;
114 TV.tv_usec = Convert(ts.tv_nsec);
216 return tm.tv_sec < max_seconds || (tm.tv_sec == max_seconds && tm.tv_nsec <= max_nsec);
218 return tm.tv_nsec >= min_nsec_timespec;
238 if (tm.tv_sec >= 0 || tm.tv_nsec == 0) {
239 return FileTimeT(fs_seconds(tm.tv_sec) + duration_cast<fs_duration>(fs_nanoseconds(tm.tv_nsec)));
241 auto adj_subsec = duration_cast<fs_duration>(fs_seconds(1) - fs_nanoseconds(tm.tv_nsec));
252 // The tv_nsec and tv_usec fields must not be negative so adjust accordingly
266 return set_times_checked(&dest.tv_sec, &dest.tv_nsec, tp);