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.c79 #define TIME_GET_MINUTE PyDateTime_TIME_GET_MINUTE macro
3873 return PyLong_FromLong(TIME_GET_MINUTE(self)); in time_minute()
4054 int m = TIME_GET_MINUTE(self); in time_repr()
4129 TIME_GET_HOUR(self), TIME_GET_MINUTE(self), in time_isoformat()
4165 TIME_GET_MINUTE(self), in time_strftime()
4220 TIME_GET_MINUTE(self) * 60 + in time_richcompare()
4225 TIME_GET_MINUTE(other) * 60 + in time_richcompare()
4261 TIME_GET_MINUTE(self), in time_hash()
4288 TIME_GET_MINUTE(self) * 60 + in time_hash()
4316 int mm = TIME_GET_MINUTE(self); in time_replace()
[all …]