Home
last modified time | relevance | path

Searched refs:StartTime (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/ntp/scripts/monitoring/
H A Dntploopwatch25 undef($StartTime);
127 (@ARGV || die($usage), $StartTime=&date_time_spec2seconds(shift),next);
153 defined($StartTime) &&
350 next if defined($StartTime) && defined($PrintIt);
353 undef($StartTime);
357 $StartTime=&date_time_spec2seconds($v);
431 printf " StartTime\t= %s",defined($StartTime)?&ctime($StartTime):"none\n";
579 if (defined($StartTime) && defined($EndTime))
581 $l = ($EndTime-$StartTime) -$[+1 +1; # worst case: 1 sample per second
774 ((defined($StartTime) && defined($EndTime))
[all …]
H A Dloopwatch.config.SAMPLE58 # StartTime: none/ISO_DATE_TIME
60 StartTime=none
65 # if both StartTime and EndTime are specified
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtiming.h33 : StartTime(0), AccTime(Other.AccTime), Manager(Other.Manager), in Timer()
43 CHECK_EQ(StartTime, 0U); in start()
44 StartTime = getMonotonicTime(); in start()
47 AccTime += getMonotonicTime() - StartTime; in stop()
48 StartTime = 0; in stop()
55 StartTime = 0; in ignore()
65 u64 StartTime = 0; variable
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DTimeProfiler.cpp94 ClockType::rep getFlameGraphStartUs(TimePointType StartTime) const { in getFlameGraphStartUs()
96 time_point_cast<microseconds>(StartTime)) in getFlameGraphStartUs()
110 : BeginningOfTime(system_clock::now()), StartTime(ClockType::now()), in TimeTraceProfiler()
190 auto StartUs = E.getFlameGraphStartUs(StartTime); in write()
328 const TimePointType StartTime; member
H A DTimer.cpp194 StartTime = TimeRecord::getCurrentTime(true); in startTimer()
201 Time -= StartTime; in stopTimer()
207 Time = StartTime = TimeRecord(); in clear()
/freebsd/sys/contrib/dev/acpica/compiler/
H A Daslcompile.c836 Delta = (UINT32) (Event->EndTime - Event->StartTime); in CmDumpAllEvents()
925 AslGbl_Events[AslGbl_NamespaceEvent].StartTime) / 10) / in CmCleanupAndExit()
H A Dasltypes.h444 UINT64 StartTime; member
H A Daslutils.c510 AslGbl_Events[AslGbl_NextEvent].StartTime = AcpiOsGetTimer (); in UtBeginEvent()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DTimer.h81 TimeRecord StartTime; ///< The time startTimer() was last called. variable
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp860 auto StartTime = system_clock::now(); in FuzzerDriver() local
865 auto MS = duration_cast<milliseconds>(StopTime - StartTime).count(); in FuzzerDriver()