Lines Matching refs:GET_TD_DAYS
82 #define GET_TD_DAYS(o) (((PyDateTime_Delta *)(o))->days) macro
841 const int days = GET_TD_DAYS(u); in call_utc_tzinfo_method()
1508 x1 = PyInt_FromLong(GET_TD_DAYS(self)); in delta_to_microseconds()
1686 int days = GET_TD_DAYS(left) + GET_TD_DAYS(right); in delta_add()
1701 return new_delta(-GET_TD_DAYS(self), in delta_negative()
1713 return new_delta(GET_TD_DAYS(self), in delta_positive()
1727 if (GET_TD_DAYS(self) < 0) in delta_abs()
1745 int days = GET_TD_DAYS(left) - GET_TD_DAYS(right); in delta_subtract()
1767 diff = GET_TD_DAYS(self) - GET_TD_DAYS(other); in delta_richcompare()
2023 return (GET_TD_DAYS(self) != 0 in delta_nonzero()
2034 GET_TD_DAYS(self), in delta_repr()
2040 GET_TD_DAYS(self), in delta_repr()
2045 GET_TD_DAYS(self)); in delta_repr()
2051 int days = GET_TD_DAYS(self); in delta_str()
2100 return Py_BuildValue("iii", GET_TD_DAYS(self), in delta_getstate()
2418 int deltadays = GET_TD_DAYS(delta); in add_date_timedelta()
4081 int day = GET_DAY(date) + GET_TD_DAYS(delta) * factor; in add_datetime_timedelta()
4328 diff = GET_TD_DAYS(delta); in datetime_richcompare()