reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/LockFileManager.cpp
  301   Interval.tv_sec = 0;
  334     Interval.tv_sec *= 2;
  337       ++Interval.tv_sec;
  345            Interval.tv_sec < (time_t)MaxSeconds
lib/Support/Unix/Path.inc
  676                        Status.st_atime, atime_nsec, Status.st_mtime, mtime_nsec,
  676                        Status.st_atime, atime_nsec, Status.st_mtime, mtime_nsec,
lib/Support/Unix/Unix.h
   96   RetVal.tv_sec = toTimeT(TP);
projects/compiler-rt/lib/fuzzer/FuzzerIO.cpp
   30   return St.st_mtime;
projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
  436   ts.tv_sec = seconds;
  439   if (res) return ts.tv_sec;
projects/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp
  800   return (u64)ts.tv_sec * (1000ULL * 1000 * 1000) + ts.tv_nsec;
projects/compiler-rt/lib/scudo/standalone/linux.cpp
  121   return static_cast<u64>(TS.tv_sec) * (1000ULL * 1000 * 1000) +
projects/compiler-rt/lib/xray/xray_basic_logging.cpp
  315     return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec;
  335         return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec;
projects/compiler-rt/lib/xray/xray_fdr_controller.h
   96             static_cast<int64_t>(TS.tv_sec),
projects/compiler-rt/lib/xray/xray_fdr_logging.cpp
  439     Result.TSC = TS.tv_sec * __xray::NanosecondsPerSecond + TS.tv_nsec;
projects/openmp/runtime/src/z_Linux_util.cpp
 1783   TIMEVAL_TO_TIMESPEC(&tval, &stop);
 1784   t_ns = TS2NS(stop) - TS2NS(__kmp_sys_timer_data.start);
 1784   t_ns = TS2NS(stop) - TS2NS(__kmp_sys_timer_data.start);
 1793   TIMEVAL_TO_TIMESPEC(&tval, &__kmp_sys_timer_data.start);
unittests/Support/TimerTest.cpp
   28   Interval.tv_sec = 0;
utils/benchmark/src/sleep.cc
   37   sleep_time.tv_sec = microseconds / kNumMicrosPerSecond;
utils/benchmark/src/timers.cc
   98   return ts.tv_sec + (static_cast<double>(ts.tv_nsec) * 1e-9);