taglinefilesource code
date538fs/isofs/inode.ciso_date(raw_inode->date, high_sierra);
date442fs/msdos/inode.cdate_dos2unix(CF_LE_W(raw_entry->time),CF_LE_W(raw_entry->date));
date474fs/msdos/inode.cdate_unix2dos(inode->i_mtime,&raw_entry->time,&raw_entry->date);
date476fs/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);
date1006fs/ncpfs/dir.cncp_date_dos2unix(unsigned short time,unsigned short date)
date1010fs/ncpfs/dir.cmonth = ((date >> 5) & 15)-1;
date1011fs/ncpfs/dir.cyear = date >> 9;
date1013fs/ncpfs/dir.c((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
date1022fs/ncpfs/dir.cncp_date_unix2dos(int unix_date,unsigned short *time, unsigned short *date)
date1042fs/ncpfs/dir.c*date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
date183fs/smbfs/proc.cdate_dos2unix(unsigned short time,unsigned short date)
date187fs/smbfs/proc.cmonth = ((date >> 5) & 15)-1;
date188fs/smbfs/proc.cyear = date >> 9;
date190fs/smbfs/proc.c((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
date200fs/smbfs/proc.cdate_unix2dos(int unix_date,unsigned short *time, unsigned short *date)
date220fs/smbfs/proc.c*date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
date1511fs/smbfs/proc.cword date, time;
date1517fs/smbfs/proc.cdate_unix2dos(new_entry->ctime, &time, &date);
date1518fs/smbfs/proc.cWSET(buf, smb_vwv1, date);
date1521fs/smbfs/proc.cdate_unix2dos(new_entry->atime, &time, &date);
date1522fs/smbfs/proc.cWSET(buf, smb_vwv3, date);
date1525fs/smbfs/proc.cdate_unix2dos(new_entry->mtime, &time, &date);
date1526fs/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);
date134include/linux/ncp_fs.hint  ncp_date_dos2unix(__u16 time, __u16 date);
date135include/linux/ncp_fs.hvoid ncp_date_unix2dos(int unix_date, __u16 *time, __u16 *date);