Home | History | Annotate | Download | only in bionic

Lines Matching defs:time

37 Programmers who have available to them 64-bit time values as a 'long
39 converts the time even on 32-bit systems. Whether you have 64-bit time
52 #include <time.h>
111 /* Year range we can trust the time funcitons with */
310 wind up on Dec 31st the previous year when doing a -UTC time zone.
313 is for Dec 31st with a +UTC time zone.
489 Time64_T time;
502 time = (Time64_T)mktime(&safe_date);
504 time += seconds_between_years(year, (Year)(safe_date.tm_year + 1900));
506 return time;
522 Time64_T time = *in_time;
549 v_tm_sec = (int)(time % 60);
550 time /= 60;
551 v_tm_min = (int)(time % 60);
552 time /= 60;
553 v_tm_hour = (int)(time % 24);
554 time /= 24;
555 v_tm_tday = time;
643 struct TM *localtime64_r (const Time64_T *time, struct TM *local_tm)
654 if( SHOULD_USE_SYSTEM_LOCALTIME(*time) ) {
655 safe_time = *time;
657 TRACE1("Using system localtime for %lld\n", *time);
667 if( gmtime64_r(time, &gm_tm) == NULL ) {
668 TRACE1("gmtime64_r returned null for %lld\n", *time);
779 char *ctime64_r( const Time64_T* time, char* result ) {
782 localtime64_r( time, &date );
788 struct TM *localtime64(const Time64_T *time) {
789 return localtime64_r(time, &Static_Return_Date);
792 struct TM *gmtime64(const Time64_T *time) {
793 return gmtime64_r(time, &Static_Return_Date);
800 char *ctime64( const Time64_T* time ) {
801 return asctime64(localtime64(time));