Lines Matching refs:GET_TD_SECONDS
83 #define GET_TD_SECONDS(o) (((PyDateTime_Delta *)(o))->seconds) macro
848 int ss = days * 24 * 3600 + GET_TD_SECONDS(u); in call_utc_tzinfo_method()
1518 x1 = PyInt_FromLong(GET_TD_SECONDS(self)); /* seconds */ in delta_to_microseconds()
1687 int seconds = GET_TD_SECONDS(left) + GET_TD_SECONDS(right); in delta_add()
1702 -GET_TD_SECONDS(self), in delta_negative()
1714 GET_TD_SECONDS(self), in delta_positive()
1725 assert(GET_TD_SECONDS(self) >= 0); in delta_abs()
1746 int seconds = GET_TD_SECONDS(left) - GET_TD_SECONDS(right); in delta_subtract()
1769 diff = GET_TD_SECONDS(self) - GET_TD_SECONDS(other); in delta_richcompare()
2024 || GET_TD_SECONDS(self) != 0 in delta_nonzero()
2035 GET_TD_SECONDS(self), in delta_repr()
2037 if (GET_TD_SECONDS(self) != 0) in delta_repr()
2041 GET_TD_SECONDS(self)); in delta_repr()
2052 int seconds = GET_TD_SECONDS(self); in delta_str()
2101 GET_TD_SECONDS(self), in delta_getstate()
4084 int second = DATE_GET_SECOND(date) + GET_TD_SECONDS(delta) * factor; in add_datetime_timedelta()
4330 diff = GET_TD_SECONDS(delta) | in datetime_richcompare()