Searched refs:total_seconds (Results 1 – 4 of 4) sorted by relevance
99 unsigned long long total_seconds = total_msec / 1000; in xa_compute_mcps() local100 int seconds = (int)(total_seconds % 60); in xa_compute_mcps()101 int minutes = (int)(total_seconds / 60); in xa_compute_mcps()
275 self.assertEqual(td.total_seconds(), 31536000.0)276 for total_seconds in [123456.789012, -123456.789012, 0.123456, 0, 1e6]:277 td = timedelta(seconds=total_seconds)278 self.assertEqual(td.total_seconds(), total_seconds)283 self.assertEqual(td.total_seconds(),
2103 PyObject *total_seconds; in delta_total_seconds() local2117 total_seconds = PyNumber_TrueDivide(total_microseconds, one_million); in delta_total_seconds()2121 return total_seconds; in delta_total_seconds()