Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dtimemodule.c278 time_t whent = _PyTime_DoubleToTimet(when); in time_convert() local
280 if (whent == (time_t)-1 && PyErr_Occurred()) in time_convert()
283 p = function(&whent); in time_convert()
/external/python/cpython3/Modules/
Dtimemodule.c462 time_t whent; in parse_time_t_args() local
467 whent = time(NULL); in parse_time_t_args()
470 if (_PyTime_ObjectToTime_t(ot, &whent, _PyTime_ROUND_FLOOR) == -1) in parse_time_t_args()
473 *pwhen = whent; in parse_time_t_args()