Home
last modified time | relevance | path

Searched refs:LocalTime (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/ntp/ntpd/
H A Dcheck_y2k.c136 static struct tm LocalTime; variable
138 #define Error(year) if ( (year)>=2036 && LocalTime.tm_year < 110 ) \
153 LocalTime = *localtime( &Time ); in main()
180 save_year = LocalTime.tm_year; /* save current year */ in main()
183 LocalTime.tm_year = year - 1900; in main()
205 LocalTime.tm_year = year - 1900; /* everything > limit */ in main()
215 LocalTime.tm_year = save_year; in main()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp299 struct tm LocalTime; in InitDebuggingDir() local
319 localtime_r(&Time, &LocalTime); in InitDebuggingDir()
320 strftime(TimeBuffer, sizeof(TimeBuffer), "%Y%m%d", &LocalTime); in InitDebuggingDir()
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_function_call_trie.h446 uint64_t LocalTime = in exitFunction() local
451 TopNode->CumulativeLocalTime += LocalTime - CumulativeTreeTime; in exitFunction()
452 CumulativeTreeTime += LocalTime; in exitFunction()
/freebsd/contrib/ntp/parseutil/
H A Ddcfd.c1274 struct tm LocalTime; in check_y2k() local
1277 #define Error(year) if ( (year)>=2036 && LocalTime.tm_year < 110 ) \ in check_y2k()
1283 LocalTime = *localtime( &Time ); in check_y2k()