taglinefilesource code
date533fs/isofs/inode.ciso_date(raw_inode->date, high_sierra);
date434fs/msdos/inode.cdate_dos2unix(CF_LE_W(raw_entry->time),CF_LE_W(raw_entry->date));
date465fs/msdos/inode.cdate_unix2dos(inode->i_mtime,&raw_entry->time,&raw_entry->date);
date467fs/msdos/inode.craw_entry->date = CT_LE_W(raw_entry->date);
date239fs/msdos/misc.cint date_dos2unix(unsigned short time,unsigned short date)
date243fs/msdos/misc.cmonth = ((date >> 5) & 15)-1;
date244fs/msdos/misc.cyear = date >> 9;
date246fs/msdos/misc.c((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
date257fs/msdos/misc.cunsigned short *date)
date277fs/msdos/misc.c*date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
date204fs/msdos/namei.cdate_unix2dos(dir->i_mtime,&de->time,&de->date);
date196fs/smbfs/proc.cdate_dos2unix(unsigned short time,unsigned short date)
date200fs/smbfs/proc.cmonth = ((date >> 5) & 15)-1;
date201fs/smbfs/proc.cyear = date >> 9;
date203fs/smbfs/proc.c((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
date213fs/smbfs/proc.cdate_unix2dos(int unix_date,unsigned short *time, unsigned short *date)
date233fs/smbfs/proc.c*date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
date1438fs/smbfs/proc.cword date, time;
date1444fs/smbfs/proc.cdate_unix2dos(new_entry->ctime, &time, &date);
date1445fs/smbfs/proc.cWSET(buf, smb_vwv1, date);
date1448fs/smbfs/proc.cdate_unix2dos(new_entry->atime, &time, &date);
date1449fs/smbfs/proc.cWSET(buf, smb_vwv3, date);
date1452fs/smbfs/proc.cdate_unix2dos(new_entry->mtime, &time, &date);
date1453fs/smbfs/proc.cWSET(buf, smb_vwv5, date);
date111include/linux/iso_fs.hchar date      [ISODCL (19, 25)]; /* 7 by 711 */
date86include/linux/msdos_fs.h__u16  time,date,start;/* time, date and first cluster */
date122include/linux/msdos_fs.hextern int date_dos2unix(__u16 time, __u16 date);
date123include/linux/msdos_fs.hextern void date_unix2dos(int unix_date,__u16 *time, __u16 *date);