Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c83 #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()
1685 int seconds = GET_TD_SECONDS(left) + GET_TD_SECONDS(right); in delta_add()
1700 -GET_TD_SECONDS(self), in delta_negative()
1712 GET_TD_SECONDS(self), in delta_positive()
1723 assert(GET_TD_SECONDS(self) >= 0); in delta_abs()
1744 int seconds = GET_TD_SECONDS(left) - GET_TD_SECONDS(right); in delta_subtract()
1767 diff = GET_TD_SECONDS(self) - GET_TD_SECONDS(other); in delta_richcompare()
2019 || GET_TD_SECONDS(self) != 0 in delta_nonzero()
[all …]