Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c72 #define TIME_GET_MICROSECOND PyDateTime_TIME_GET_MICROSECOND macro
1145 sprintf(freplacement, "%06d", TIME_GET_MICROSECOND(object)); in make_freplacement()
3118 return PyInt_FromLong(TIME_GET_MICROSECOND(self)); in time_microsecond()
3251 int us = TIME_GET_MICROSECOND(self); in time_repr()
3387 diff = TIME_GET_MICROSECOND(self) - in time_richcompare()
3388 TIME_GET_MICROSECOND(other); in time_richcompare()
3429 TIME_GET_MICROSECOND(self), in time_hash()
3435 TIME_GET_MICROSECOND(self)); in time_hash()
3453 int us = TIME_GET_MICROSECOND(self); in time_replace()
3474 if (TIME_GET_SECOND(self) || TIME_GET_MICROSECOND(self)) { in time_nonzero()
[all …]
/external/python/cpython3/Modules/
D_datetimemodule.c97 #define TIME_GET_MICROSECOND PyDateTime_TIME_GET_MICROSECOND macro
1470 sprintf(freplacement, "%06d", TIME_GET_MICROSECOND(object)); in make_freplacement()
4121 return PyLong_FromLong(TIME_GET_MICROSECOND(self)); in time_microsecond()
4291 int us = TIME_GET_MICROSECOND(self); in time_repr()
4323 int us = TIME_GET_MICROSECOND(self); in time_isoformat()
4466 diff = TIME_GET_MICROSECOND(self) - in time_richcompare()
4467 TIME_GET_MICROSECOND(other); in time_richcompare()
4498 TIME_GET_MICROSECOND(self), in time_hash()
4525 microseconds = TIME_GET_MICROSECOND(self); in time_hash()
4553 int us = TIME_GET_MICROSECOND(self); in time_replace()
[all …]