Searched defs:safe_date (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/bionic/
H A Dtime64.c487 struct tm safe_date; local
493 copy_TM_to_tm(input_date, &safe_date);
494 return (Time64_T)mktime(&safe_date);
497 /* Have to make the year safe in date else it won't fit in safe_date */
500 copy_TM_to_tm(&date, &safe_date);
502 time = (Time64_T)mktime(&safe_date);
504 time += seconds_between_years(year, (Year)(safe_date.tm_year + 1900));
531 struct tm safe_date; local
532 GMTIME_R(&safe_time, &safe_date);
534 copy_tm_to_TM(&safe_date,
646 struct tm safe_date; local
[all...]

Completed in 22 milliseconds