Lines Matching refs:usecond
672 int second, int usecond, PyObject *tzinfo, PyTypeObject *type) in new_datetime_ex() argument
684 DATE_SET_MICROSECOND(self, usecond); in new_datetime_ex()
699 new_time_ex(int hour, int minute, int second, int usecond, in new_time_ex() argument
712 TIME_SET_MICROSECOND(self, usecond); in new_time_ex()
3153 int usecond = 0; in time_new() local
3191 &hour, &minute, &second, &usecond, in time_new()
3193 if (check_time_args(hour, minute, second, usecond) < 0) in time_new()
3197 self = new_time_ex(hour, minute, second, usecond, tzinfo, in time_new()
3682 int usecond = 0; in datetime_new() local
3721 &second, &usecond, &tzinfo)) { in datetime_new()
3724 if (check_time_args(hour, minute, second, usecond) < 0) in datetime_new()
3729 hour, minute, second, usecond, in datetime_new()