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.c81 #define TIME_GET_MICROSECOND PyDateTime_TIME_GET_MICROSECOND macro
1450 sprintf(freplacement, "%06d", TIME_GET_MICROSECOND(object)); in make_freplacement()
3886 return PyLong_FromLong(TIME_GET_MICROSECOND(self)); in time_microsecond()
4056 int us = TIME_GET_MICROSECOND(self); in time_repr()
4088 int us = TIME_GET_MICROSECOND(self); in time_isoformat()
4231 diff = TIME_GET_MICROSECOND(self) - in time_richcompare()
4232 TIME_GET_MICROSECOND(other); in time_richcompare()
4263 TIME_GET_MICROSECOND(self), in time_hash()
4290 microseconds = TIME_GET_MICROSECOND(self); in time_hash()
4318 int us = TIME_GET_MICROSECOND(self); in time_replace()
[all …]