HomeSort by relevance Sort by last modified time
    Searched refs:secs_between_epochs (Results 1 - 5 of 5) sorted by null

  /external/python/cpython3/Python/
fileutils.c 530 static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */ variable
541 *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, time_t);
549 out = time_in + secs_between_epochs;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
import.c 1002 static __int64 secs_between_epochs = 11644473600; variable
1025 return filetime / 10000000 - secs_between_epochs;
    [all...]
  /external/python/cpython2/Python/
import.c 1020 static __int64 secs_between_epochs = 11644473600; variable
1043 return filetime / 10000000 - secs_between_epochs;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 871 static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */ variable
882 *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, time_t);
890 out = time_in + secs_between_epochs;
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 1052 static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */ variable
1063 *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, time_t);
1071 out = time_in + secs_between_epochs;
    [all...]

Completed in 218 milliseconds