Searched refs:timeptr (Results 1 – 8 of 8) sorted by relevance
/external/icu/icu4c/source/tools/tzcode/ |
D | asctime.c | 72 asctime_r(register const struct tm *timeptr, char *buf) in asctime_r() argument 86 if (timeptr == NULL) { in asctime_r() 90 if (timeptr->tm_wday < 0 || timeptr->tm_wday >= DAYSPERWEEK) in asctime_r() 92 else wn = wday_name[timeptr->tm_wday]; in asctime_r() 93 if (timeptr->tm_mon < 0 || timeptr->tm_mon >= MONSPERYEAR) in asctime_r() 95 else mn = mon_name[timeptr->tm_mon]; in asctime_r() 102 (void) strftime(year, sizeof year, "%Y", timeptr); in asctime_r() 109 timeptr->tm_mday, timeptr->tm_hour, in asctime_r() 110 timeptr->tm_min, timeptr->tm_sec, in asctime_r() 129 asctime(register const struct tm *timeptr) in asctime() argument [all …]
|
D | zdump.c | 873 dumptime(register const struct tm *timeptr) in dumptime() argument 887 if (timeptr == NULL) { in dumptime() 896 if (timeptr->tm_wday < 0 || timeptr->tm_wday >= in dumptime() 899 else wn = wday_name[timeptr->tm_wday]; in dumptime() 900 if (timeptr->tm_mon < 0 || timeptr->tm_mon >= in dumptime() 903 else mn = mon_name[timeptr->tm_mon]; in dumptime() 906 timeptr->tm_mday, timeptr->tm_hour, in dumptime() 907 timeptr->tm_min, timeptr->tm_sec); in dumptime() 909 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR; in dumptime() 910 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + in dumptime()
|
/external/libcxx/include/ |
D | ctime | 34 time_t mktime(tm* timeptr); 36 char* asctime(const tm* timeptr); 41 const tm* restrict timeptr);
|
D | cwchar | 90 const tm* restrict timeptr);
|
/external/jhead/ |
D | exif.c | 1649 int Exif2tm(struct tm * timeptr, char * ExifTime) in Exif2tm() argument 1653 timeptr->tm_wday = -1; in Exif2tm() 1659 &timeptr->tm_year, &timeptr->tm_mon, &timeptr->tm_mday, in Exif2tm() 1660 &timeptr->tm_hour, &timeptr->tm_min, &timeptr->tm_sec); in Exif2tm() 1664 timeptr->tm_isdst = -1; in Exif2tm() 1665 timeptr->tm_mon -= 1; // Adjust for unix zero-based months in Exif2tm() 1666 timeptr->tm_year -= 1900; // Adjust for year starting at 1900 in Exif2tm()
|
D | jhead.h | 186 int Exif2tm(struct tm * timeptr, char * ExifTime);
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 655 /// time_t mktime(struct tm *timeptr);
|
/external/v8/tools/profviz/ |
D | gnuplot-4.6.3-emscripten.js | 3294 function _strftime(s, maxsize, format, timeptr) { argument
|