Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dpytime.c24 #define MS_TO_NS (MS_TO_US * US_TO_NS) macro
25 #define SEC_TO_NS (SEC_TO_MS * MS_TO_NS)
443 return _PyTime_FromObject(t, obj, round, MS_TO_NS); in _PyTime_FromMillisecondsObject()
777 if (_PyTime_check_mul_overflow(t, MS_TO_NS)) { in pymonotonic()
785 *tp = t * MS_TO_NS; in pymonotonic()
/external/python/cpython3/Lib/test/
Dtest_time.py26 MS_TO_NS = 10 ** 6 variable
762 units = [1, US_TO_NS, MS_TO_NS, SEC_TO_NS]
977 self.create_decimal_converter(MS_TO_NS),