Lines Matching defs:usecond
989 int second, int usecond, PyObject *tzinfo, int fold, PyTypeObject *type)
997 if (check_time_args(hour, minute, second, usecond, fold) < 0) {
1011 DATE_SET_MICROSECOND(self, usecond);
1023 int second, int usecond, PyObject *tzinfo, PyTypeObject *type)
1025 return new_datetime_ex2(year, month, day, hour, minute, second, usecond,
1035 int second, int usecond, PyObject *tzinfo,
1040 dt = new_datetime(year, month, day, hour, minute, second, usecond,
1051 usecond,
1060 int second, int usecond, PyObject *tzinfo,
1063 second, usecond, tzinfo, 0,
1069 new_time_ex2(int hour, int minute, int second, int usecond,
1075 if (check_time_args(hour, minute, second, usecond, fold) < 0) {
1089 TIME_SET_MICROSECOND(self, usecond);
1100 new_time_ex(int hour, int minute, int second, int usecond,
1103 return new_time_ex2(hour, minute, second, usecond, tzinfo, 0, type);
4245 int usecond = 0;
4289 &hour, &minute, &second, &usecond,
4291 self = new_time_ex2(hour, minute, second, usecond, tzinfo, fold,
4925 int usecond = 0;
4970 &second, &usecond, &tzinfo, &fold)) {
4972 hour, minute, second, usecond,