Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c82 #define GET_TD_DAYS(o) (((PyDateTime_Delta *)(o))->days)
83 #define GET_TD_SECONDS(o) (((PyDateTime_Delta *)(o))->seconds)
84 #define GET_TD_MICROSECONDS(o) (((PyDateTime_Delta *)(o))->microseconds)
734 PyDateTime_Delta *self; in new_delta_ex()
744 self = (PyDateTime_Delta *) (type->tp_alloc(type, 0)); in new_delta_ex()
1501 delta_to_microseconds(PyDateTime_Delta *self) in delta_to_microseconds()
1633 multiply_int_timedelta(PyObject *intobj, PyDateTime_Delta *delta) in multiply_int_timedelta()
1654 divide_timedelta_int(PyDateTime_Delta *delta, PyObject *intobj) in divide_timedelta_int()
1697 delta_negative(PyDateTime_Delta *self) in delta_negative()
1706 delta_positive(PyDateTime_Delta *self) in delta_positive()
[all …]
/external/python/cpython2/Include/
Ddatetime.h41 } PyDateTime_Delta; typedef