Home
last modified time | relevance | path

Searched refs:_PyLong_FromTime_t (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Include/
Dpytime.h47 PyAPI_FUNC(PyObject *) _PyLong_FromTime_t(
/external/python/cpython3/Python/
Dpytime.c85 _PyLong_FromTime_t(time_t t) in _PyLong_FromTime_t() function
/external/python/cpython3/Modules/
D_testcapimodule.c3141 return _PyLong_FromTime_t(sec); in test_pytime_object_to_time_t()
3157 return Py_BuildValue("Nl", _PyLong_FromTime_t(sec), usec); in test_pytime_object_to_timeval()
3173 return Py_BuildValue("Nl", _PyLong_FromTime_t(sec), nsec); in test_pytime_object_to_timespec()
4114 return Py_BuildValue("Nl", _PyLong_FromTime_t(ts.tv_sec), ts.tv_nsec); in test_PyTime_AsTimespec()
Dtimemodule.c443 PyStructSequence_SET_ITEM(v, 10, _PyLong_FromTime_t(gmtoff)); in tmtotuple()
Dposixmodule.c1969 PyObject *s = _PyLong_FromTime_t(sec); in fill_time()