Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c51 #define DATE_GET_MICROSECOND PyDateTime_DATE_GET_MICROSECOND macro
1147 sprintf(freplacement, "%06d", DATE_GET_MICROSECOND(object)); in make_freplacement()
1376 int us = DATE_GET_MICROSECOND(dt); in isoformat_time()
2925 us = DATE_GET_MICROSECOND(dt); in tzinfo_fromutc()
3642 return PyInt_FromLong(DATE_GET_MICROSECOND(self)); in datetime_microsecond()
4085 int microsecond = DATE_GET_MICROSECOND(date) + in add_datetime_timedelta()
4160 delta_us = DATE_GET_MICROSECOND(left) - in datetime_subtract()
4161 DATE_GET_MICROSECOND(right); in datetime_subtract()
4191 if (DATE_GET_MICROSECOND(self)) { in datetime_repr()
4198 DATE_GET_MICROSECOND(self)); in datetime_repr()
[all …]
/external/python/cpython3/Modules/
D_datetimemodule.c74 #define DATE_GET_MICROSECOND PyDateTime_DATE_GET_MICROSECOND macro
1472 sprintf(freplacement, "%06d", DATE_GET_MICROSECOND(object)); in make_freplacement()
4788 return PyLong_FromLong(DATE_GET_MICROSECOND(self)); in datetime_microsecond()
5382 int microsecond = DATE_GET_MICROSECOND(date) + in add_datetime_timedelta()
5480 delta_us = DATE_GET_MICROSECOND(left) - in datetime_subtract()
5481 DATE_GET_MICROSECOND(right); in datetime_subtract()
5513 if (DATE_GET_MICROSECOND(self)) { in datetime_repr()
5520 DATE_GET_MICROSECOND(self)); in datetime_repr()
5558 int us = DATE_GET_MICROSECOND(self); in datetime_isoformat()
5637 DATE_GET_MICROSECOND(dt), in flip_fold()
[all …]