Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c70 #define TIME_GET_MINUTE PyDateTime_TIME_GET_MINUTE macro
3105 return PyInt_FromLong(TIME_GET_MINUTE(self)); in time_minute()
3249 int m = TIME_GET_MINUTE(self); in time_repr()
3324 TIME_GET_MINUTE(self), in time_strftime()
3380 (TIME_GET_MINUTE(self) - offset1) * 60 + in time_richcompare()
3383 (TIME_GET_MINUTE(other) - offset2) * 60 + in time_richcompare()
3423 TIME_GET_MINUTE(self) - offset, in time_hash()
3451 int mm = TIME_GET_MINUTE(self); in time_replace()
3486 return (TIME_GET_MINUTE(self) - offset + TIME_GET_HOUR(self)*60) != 0; in time_nonzero()
4021 TIME_GET_MINUTE(time), in datetime_combine()
/external/python/cpython3/Modules/
D_datetimemodule.c95 #define TIME_GET_MINUTE PyDateTime_TIME_GET_MINUTE macro
4108 return PyLong_FromLong(TIME_GET_MINUTE(self)); in time_minute()
4289 int m = TIME_GET_MINUTE(self); in time_repr()
4364 TIME_GET_HOUR(self), TIME_GET_MINUTE(self), in time_isoformat()
4400 TIME_GET_MINUTE(self), in time_strftime()
4455 TIME_GET_MINUTE(self) * 60 + in time_richcompare()
4460 TIME_GET_MINUTE(other) * 60 + in time_richcompare()
4496 TIME_GET_MINUTE(self), in time_hash()
4523 TIME_GET_MINUTE(self) * 60 + in time_hash()
4551 int mm = TIME_GET_MINUTE(self); in time_replace()
[all …]