Lines Matching refs:microsecond
2449 int hour, minute, second, microsecond; in get_datetime_fromdateandtime() local
2454 &hour, &minute, &second, µsecond)) { in get_datetime_fromdateandtime()
2461 hour, minute, second, microsecond); in get_datetime_fromdateandtime()
2466 hour, minute, second, microsecond, in get_datetime_fromdateandtime()
2479 int hour, minute, second, microsecond, fold; in get_datetime_fromdateandtimeandfold() local
2484 &hour, &minute, &second, µsecond, in get_datetime_fromdateandtimeandfold()
2492 hour, minute, second, microsecond, in get_datetime_fromdateandtimeandfold()
2498 hour, minute, second, microsecond, in get_datetime_fromdateandtimeandfold()
2511 int hour, minute, second, microsecond; in get_time_fromtime() local
2515 &hour, &minute, &second, µsecond)) { in get_time_fromtime()
2520 rv = PyTime_FromTime(hour, minute, second, microsecond); in get_time_fromtime()
2524 hour, minute, second, microsecond, in get_time_fromtime()
2536 int hour, minute, second, microsecond, fold; in get_time_fromtimeandfold() local
2540 &hour, &minute, &second, µsecond, in get_time_fromtimeandfold()
2546 rv = PyTime_FromTimeAndFold(hour, minute, second, microsecond, fold); in get_time_fromtimeandfold()
2550 hour, minute, second, microsecond, in get_time_fromtimeandfold()
2663 int hour, minute, second, microsecond; in test_PyDateTime_DATE_GET() local
2668 microsecond = PyDateTime_DATE_GET_MICROSECOND(obj); in test_PyDateTime_DATE_GET()
2670 return Py_BuildValue("(llll)", hour, minute, second, microsecond); in test_PyDateTime_DATE_GET()
2676 int hour, minute, second, microsecond; in test_PyDateTime_TIME_GET() local
2681 microsecond = PyDateTime_TIME_GET_MICROSECOND(obj); in test_PyDateTime_TIME_GET()
2683 return Py_BuildValue("(llll)", hour, minute, second, microsecond); in test_PyDateTime_TIME_GET()