Home
last modified time | relevance | path

Searched refs:secs_between_epochs (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/tools/build/src/engine/
Dtimestamp.cpp73 static __int64 const secs_between_epochs = 11644473600; in timestamp_from_filetime() local
86 timestamp_init( t, (time_t)( ( in / 10000000 ) - secs_between_epochs ), in timestamp_from_filetime()
/third_party/python/Python/
Dfileutils.c824 static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */ variable
835 *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, time_t); in FILE_TIME_to_time_t_nsec()
843 out = time_in + secs_between_epochs; in _Py_time_t_to_FILE_TIME()