Searched refs:_PyTime_ROUND_CEILING (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Modules/ |
D | _queuemodule.c | 192 timeout, _PyTime_ROUND_CEILING) < 0) in _queue_SimpleQueue_get_impl() 200 _PyTime_ROUND_CEILING); in _queue_SimpleQueue_get_impl() 237 microseconds = _PyTime_AsMicroseconds(timeout_val, _PyTime_ROUND_CEILING); in _queue_SimpleQueue_get_impl()
|
D | signalmodule.c | 139 if (_PyTime_FromSecondsObject(&t, obj, _PyTime_ROUND_CEILING) < 0) { in timeval_from_double() 142 return _PyTime_AsTimeval(t, tv, _PyTime_ROUND_CEILING); in timeval_from_double() 1058 timeout_obj, _PyTime_ROUND_CEILING) < 0) in signal_sigtimedwait_impl()
|
D | selectmodule.c | 289 _PyTime_AsTimeval_noraise(timeout, &tv, _PyTime_ROUND_CEILING); in select_select() 608 ms = _PyTime_AsMilliseconds(timeout, _PyTime_ROUND_CEILING); in poll_poll() 952 ms = _PyTime_AsMilliseconds(timeout, _PyTime_ROUND_CEILING); in devpoll_poll() 1534 ms = _PyTime_AsMilliseconds(timeout, _PyTime_ROUND_CEILING); in pyepoll_poll() 1578 ms = _PyTime_AsMilliseconds(timeout, _PyTime_ROUND_CEILING); in pyepoll_poll()
|
D | timemodule.c | 1825 if (_PyTime_AsTimeval(secs, &timeout, _PyTime_ROUND_CEILING) < 0) in pysleep() 1840 millisecs = _PyTime_AsMilliseconds(secs, _PyTime_ROUND_CEILING); in pysleep()
|
D | _threadmodule.c | 55 microseconds = _PyTime_AsMicroseconds(timeout, _PyTime_ROUND_CEILING); in acquire_timed()
|
D | _ssl.c | 2207 ms = (int)_PyTime_AsMilliseconds(timeout, _PyTime_ROUND_CEILING); in PySSL_select() 2218 _PyTime_AsTimeval_noraise(timeout, &tv, _PyTime_ROUND_CEILING); in PySSL_select()
|
D | socketmodule.c | 741 ms = _PyTime_AsMilliseconds(interval, _PyTime_ROUND_CEILING); in internal_select() 749 _PyTime_AsTimeval_noraise(interval, &tv, _PyTime_ROUND_CEILING); in internal_select()
|
D | _testcapimodule.c | 3120 && round != _PyTime_ROUND_CEILING in check_time_rounding()
|
/external/python/cpython3/Include/ |
D | pytime.h | 29 _PyTime_ROUND_CEILING=1, enumerator
|
/external/python/cpython3/Python/ |
D | pytime.c | 118 else if (round == _PyTime_ROUND_CEILING) { in _PyTime_Round() 493 else if (round == _PyTime_ROUND_CEILING) { in _PyTime_Divide()
|
D | import.c | 1659 (long)_PyTime_AsMicroseconds(cum - accumulated, _PyTime_ROUND_CEILING), in import_find_and_load() 1660 (long)_PyTime_AsMicroseconds(cum, _PyTime_ROUND_CEILING), in import_find_and_load()
|