Lines Matching refs:GET_TD_MICROSECONDS
95 #define GET_TD_MICROSECONDS(o) (((PyDateTime_Delta *)(o))->microseconds) macro
1382 microseconds = GET_TD_MICROSECONDS(offset); in format_utcoffset()
1776 x2 = PyLong_FromLong(GET_TD_MICROSECONDS(self)); in delta_to_microseconds()
2059 int microseconds = GET_TD_MICROSECONDS(left) + in delta_add()
2060 GET_TD_MICROSECONDS(right); in delta_add()
2074 -GET_TD_MICROSECONDS(self), in delta_negative()
2086 GET_TD_MICROSECONDS(self), in delta_positive()
2095 assert(GET_TD_MICROSECONDS(self) >= 0); in delta_abs()
2118 int microseconds = GET_TD_MICROSECONDS(left) - in delta_subtract()
2119 GET_TD_MICROSECONDS(right); in delta_subtract()
2135 diff = GET_TD_MICROSECONDS(self) - in delta_cmp()
2136 GET_TD_MICROSECONDS(other); in delta_cmp()
2521 || GET_TD_MICROSECONDS(self) != 0); in delta_bool()
2552 if (GET_TD_MICROSECONDS(self) != 0) { in delta_repr()
2554 GET_TD_MICROSECONDS(self))); in delta_repr()
2576 int us = GET_TD_MICROSECONDS(self); in delta_str()
2610 GET_TD_MICROSECONDS(self)); in delta_getstate()
3708 GET_TD_MICROSECONDS(self->offset) == 0)) in timezone_str()
3723 microseconds = GET_TD_MICROSECONDS(offset); in timezone_str()
5145 GET_TD_MICROSECONDS(delta) * factor; in add_datetime_timedelta()
5520 GET_TD_MICROSECONDS(delta); in datetime_richcompare()