taglinefilesource code
date447fs/fat/inode.cdate_dos2unix(CF_LE_W(raw_entry->time),CF_LE_W(raw_entry->date));
date483fs/fat/inode.cfat_date_unix2dos(inode->i_mtime,&raw_entry->time,&raw_entry->date);
date485fs/fat/inode.craw_entry->date = CT_LE_W(raw_entry->date);
date237fs/fat/misc.cint date_dos2unix(unsigned short time,unsigned short date)
date241fs/fat/misc.cmonth = ((date >> 5) & 15)-1;
date242fs/fat/misc.cyear = date >> 9;
date244fs/fat/misc.c((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
date255fs/fat/misc.cunsigned short *date)
date275fs/fat/misc.c*date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
date538fs/isofs/inode.ciso_date(raw_inode->date, high_sierra);
date272fs/msdos/namei.cfat_date_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);
date875fs/vfat/namei.cfat_date_unix2dos(dir->i_mtime,&de->time,&de->date);
date878fs/vfat/namei.cde->adate = de->cdate = de->date;
date1045fs/vfat/namei.cfat_date_unix2dos(dir->i_mtime,&de->time,&de->date);
date1048fs/vfat/namei.cde->adate = de->cdate = de->date;
date1439fs/vfat/namei.cnew_de->date = old_de->date;
date111include/linux/iso_fs.hchar date      [ISODCL (19, 25)]; /* 7 by 711 */
date123include/linux/msdos_fs.h__u16  time,date,start;/* time, date and first cluster */
date174include/linux/msdos_fs.hextern int date_dos2unix(__u16 time, __u16 date);
date178include/linux/msdos_fs.hextern void fat_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);