Home
last modified time | relevance | path

Searched refs:total_microseconds (Results 1 – 3 of 3) sorted by relevance

/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dhandler_tracking.ipp46 microseconds = static_cast<uint64_t>(now.total_microseconds() % 1000000);
/external/python/cpython2/Modules/
Ddatetimemodule.c2109 PyObject *total_microseconds; in delta_total_seconds() local
2112 total_microseconds = delta_to_microseconds((PyDateTime_Delta *)self); in delta_total_seconds()
2113 if (total_microseconds == NULL) in delta_total_seconds()
2118 Py_DECREF(total_microseconds); in delta_total_seconds()
2122 total_seconds = PyNumber_TrueDivide(total_microseconds, one_million); in delta_total_seconds()
2124 Py_DECREF(total_microseconds); in delta_total_seconds()
/external/python/cpython3/Modules/
D_datetimemodule.c2634 PyObject *total_microseconds; in delta_total_seconds() local
2636 total_microseconds = delta_to_microseconds((PyDateTime_Delta *)self); in delta_total_seconds()
2637 if (total_microseconds == NULL) in delta_total_seconds()
2640 total_seconds = PyNumber_TrueDivide(total_microseconds, us_per_second); in delta_total_seconds()
2642 Py_DECREF(total_microseconds); in delta_total_seconds()