taglinefilesource code
date533fs/isofs/inode.ciso_date(raw_inode->date, high_sierra);
date438fs/msdos/inode.cdate_dos2unix(CF_LE_W(raw_entry->time),CF_LE_W(raw_entry->date));
date470fs/msdos/inode.cdate_unix2dos(inode->i_mtime,&raw_entry->time,&raw_entry->date);
date472fs/msdos/inode.craw_entry->date = CT_LE_W(raw_entry->date);
date241fs/msdos/misc.cint date_dos2unix(unsigned short time,unsigned short date)
date245fs/msdos/misc.cmonth = ((date >> 5) & 15)-1;
date246fs/msdos/misc.cyear = date >> 9;
date248fs/msdos/misc.c((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
date259fs/msdos/misc.cunsigned short *date)
date279fs/msdos/misc.c*date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
date205fs/msdos/namei.cdate_unix2dos(dir->i_mtime,&de->time,&de->date);
date185fs/smbfs/proc.cdate_dos2unix(unsigned short time,unsigned short date)
date189fs/smbfs/proc.cmonth = ((date >> 5) & 15)-1;
date190fs/smbfs/proc.cyear = date >> 9;
date192fs/smbfs/proc.c((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
date202fs/smbfs/proc.cdate_unix2dos(int unix_date,unsigned short *time, unsigned short *date)
date222fs/smbfs/proc.c*date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
date1512fs/smbfs/proc.cword date, time;
date1518fs/smbfs/proc.cdate_unix2dos(new_entry->ctime, &time, &date);
date1519fs/smbfs/proc.cWSET(buf, smb_vwv1, date);
date1522fs/smbfs/proc.cdate_unix2dos(new_entry->atime, &time, &date);
date1523fs/smbfs/proc.cWSET(buf, smb_vwv3, date);
date1526fs/smbfs/proc.cdate_unix2dos(new_entry->mtime, &time, &date);
date1527fs/smbfs/proc.cWSET(buf, smb_vwv5, date);
date111include/linux/iso_fs.hchar date      [ISODCL (19, 25)]; /* 7 by 711 */
date89include/linux/msdos_fs.h__u16  time,date,start;/* time, date and first cluster */
date125include/linux/msdos_fs.hextern int date_dos2unix(__u16 time, __u16 date);
date126include/linux/msdos_fs.hextern void date_unix2dos(int unix_date,__u16 *time, __u16 *date);