Searched refs:ymd (Results 1 – 5 of 5) sorted by relevance
124 struct clock_ymdhms ymd; in msdosfs_unix2dostime() local142 clock_secs_to_ymdhms(t, &ymd); in msdosfs_unix2dostime()143 if (ymd.dt_year > DOSMAXYEAR) in msdosfs_unix2dostime()149 *ddp = (ymd.dt_day << DD_DAY_SHIFT) in msdosfs_unix2dostime()150 + (ymd.dt_mon << DD_MONTH_SHIFT) in msdosfs_unix2dostime()151 + ((ymd.dt_year - DOSBIASYEAR) << DD_YEAR_SHIFT); in msdosfs_unix2dostime()178 struct clock_ymdhms ymd; in msdosfs_dos2unixtime() local189 memset(&ymd, 0, sizeof(ymd)); in msdosfs_dos2unixtime()190 ymd.dt_year = ((dd & DD_YEAR_MASK) >> DD_YEAR_SHIFT) + 1980 ; in msdosfs_dos2unixtime()191 ymd.dt_mon = ((dd & DD_MONTH_MASK) >> DD_MONTH_SHIFT); in msdosfs_dos2unixtime()[all …]
67 struct tm ymd; /* struct tm for y/m/d only */ member149 up->ymd = *tm_time_p; in dumbclock_start()255 asserted_tm.tm_year = up->ymd.tm_year; in dumbclock_receive()256 asserted_tm.tm_mon = up->ymd.tm_mon; in dumbclock_receive()257 asserted_tm.tm_mday = up->ymd.tm_mday; in dumbclock_receive()286 up->ymd = *lt_p; in dumbclock_receive()
1532 ymd
55 enum dateorder { no_order, dmy, mdy, ymd, ydm }; in _GLIBCXX_VISIBILITY() enumerator
1078 // [time.cal.ym], [time.cal.ymd], etc constrain the 'months'-based