Lines Matching refs:GET_TD_MICROSECONDS
84 #define GET_TD_MICROSECONDS(o) (((PyDateTime_Delta *)(o))->microseconds) macro
850 if (ss || GET_TD_MICROSECONDS(u)) { in call_utc_tzinfo_method()
1536 x2 = PyInt_FromLong(GET_TD_MICROSECONDS(self)); in delta_to_microseconds()
1688 int microseconds = GET_TD_MICROSECONDS(left) + in delta_add()
1689 GET_TD_MICROSECONDS(right); in delta_add()
1703 -GET_TD_MICROSECONDS(self), in delta_negative()
1715 GET_TD_MICROSECONDS(self), in delta_positive()
1724 assert(GET_TD_MICROSECONDS(self) >= 0); in delta_abs()
1747 int microseconds = GET_TD_MICROSECONDS(left) - in delta_subtract()
1748 GET_TD_MICROSECONDS(right); in delta_subtract()
1771 diff = GET_TD_MICROSECONDS(self) - in delta_richcompare()
1772 GET_TD_MICROSECONDS(other); in delta_richcompare()
2025 || GET_TD_MICROSECONDS(self) != 0); in delta_nonzero()
2031 if (GET_TD_MICROSECONDS(self) != 0) in delta_repr()
2036 GET_TD_MICROSECONDS(self)); in delta_repr()
2053 int us = GET_TD_MICROSECONDS(self); in delta_str()
2102 GET_TD_MICROSECONDS(self)); in delta_getstate()
4086 GET_TD_MICROSECONDS(delta) * factor; in add_datetime_timedelta()
4331 GET_TD_MICROSECONDS(delta); in datetime_richcompare()