taglinefilesource code
date527fs/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);
date237fs/msdos/misc.cint date_dos2unix(unsigned short time,unsigned short date)
date241fs/msdos/misc.cmonth = ((date >> 5) & 15)-1;
date242fs/msdos/misc.cyear = date >> 9;
date244fs/msdos/misc.c((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
date255fs/msdos/misc.cunsigned short *date)
date275fs/msdos/misc.c*date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
date233fs/msdos/namei.cdate_unix2dos(dir->i_mtime,&de->time,&de->date);
date178fs/smbfs/proc.cdate_dos2unix(unsigned short time,unsigned short date)
date182fs/smbfs/proc.cmonth = ((date >> 5) & 15)-1;
date183fs/smbfs/proc.cyear = date >> 9;
date185fs/smbfs/proc.c((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
date195fs/smbfs/proc.cdate_unix2dos(int unix_date,unsigned short *time, unsigned short *date)
date215fs/smbfs/proc.c*date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
date1505fs/smbfs/proc.cword date, time;
date1511fs/smbfs/proc.cdate_unix2dos(new_entry->ctime, &time, &date);
date1512fs/smbfs/proc.cWSET(buf, smb_vwv1, date);
date1515fs/smbfs/proc.cdate_unix2dos(new_entry->atime, &time, &date);
date1516fs/smbfs/proc.cWSET(buf, smb_vwv3, date);
date1519fs/smbfs/proc.cdate_unix2dos(new_entry->mtime, &time, &date);
date1520fs/smbfs/proc.cWSET(buf, smb_vwv5, date);
date111include/linux/iso_fs.hchar date      [ISODCL (19, 25)]; /* 7 by 711 */
date94include/linux/msdos_fs.h__u16  time,date,start;/* time, date and first cluster */
date127include/linux/msdos_fs.hextern int date_dos2unix(__u16 time, __u16 date);
date128include/linux/msdos_fs.hextern void date_unix2dos(int unix_date,__u16 *time, __u16 *date);