Home
last modified time | relevance | path

Searched refs:date (Results 1 – 15 of 15) sorted by relevance

/fs/fat/
Dmisc.c199 u16 time = le16_to_cpu(__time), date = le16_to_cpu(__date); in fat_time_fat2unix() local
202 year = date >> 9; in fat_time_fat2unix()
203 month = max(1, (date >> 5) & 0xf); in fat_time_fat2unix()
204 day = max(1, date & 0x1f) - 1; in fat_time_fat2unix()
235 __le16 *time, __le16 *date, u8 *time_cs) in fat_time_unix2fat() argument
245 *date = cpu_to_le16((0 << 9) | (1 << 5) | 1); in fat_time_unix2fat()
252 *date = cpu_to_le16((127 << 9) | (12 << 5) | 31); in fat_time_unix2fat()
266 *date = cpu_to_le16(tm.tm_year << 9 | tm.tm_mon << 5 | tm.tm_mday); in fat_time_unix2fat()
Dnamei_msdos.c235 __le16 time, date; in msdos_add_entry() local
243 fat_time_unix2fat(sbi, ts, &time, &date, NULL); in msdos_add_entry()
248 de.date = date; in msdos_add_entry()
Ddir.c1144 __le16 date, time; in fat_alloc_new_dir() local
1159 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in fat_alloc_new_dir()
1168 de[0].date = de[1].date = date; in fat_alloc_new_dir()
1173 de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = date; in fat_alloc_new_dir()
Dnamei_vfat.c596 __le16 time, date; in vfat_build_slots() local
650 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in vfat_build_slots()
652 de->date = de->cdate = de->adate = date; in vfat_build_slots()
Dfat.h407 __le16 *time, __le16 *date, u8 *time_cs);
Dinode.c436 fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0); in fat_fill_inode()
714 &raw_entry->date, NULL); in __fat_write_inode()
/fs/ncpfs/
Dncp_fs.h63 int ncp_date_dos2unix(__le16 time, __le16 date);
64 void ncp_date_unix2dos(int unix_date, __le16 * time, __le16 * date);
Ddir.c1227 unsigned short time = le16_to_cpu(t), date = le16_to_cpu(d); in ncp_date_dos2unix() local
1232 month = ((date >> 5) - 1) & 15; in ncp_date_dos2unix()
1233 year = date >> 9; in ncp_date_dos2unix()
1235 86400 * ((date & 31) - 1 + day_n[month] + (year / 4) + in ncp_date_dos2unix()
1244 ncp_date_unix2dos(int unix_date, __le16 *time, __le16 *date) in ncp_date_unix2dos() argument
1266 *date = cpu_to_le16(nl_day - day_n[month - 1] + 1 + (month << 5) + (year << 9)); in ncp_date_unix2dos()
/fs/cifs/
Dnetmisc.c949 u16 date = le16_to_cpu(le_date); in cnvrtDosUnixTm() local
952 SMB_DATE *sd = (SMB_DATE *)&date; in cnvrtDosUnixTm()
954 cifs_dbg(FYI, "date %d time %d\n", date, time); in cnvrtDosUnixTm()
/fs/jffs2/
DREADME.Locking10 JFFS2. It is not expected to remain perfectly up to date, but ought to
/fs/nfs/
Dsuper.c759 impl_id->date.seconds, impl_id->date.nseconds); in show_implementation_id()
Dnfs4xdr.c5364 p = xdr_decode_hyper(p, &res->impl_id->date.seconds); in decode_exchange_id()
5365 res->impl_id->date.nseconds = be32_to_cpup(p); in decode_exchange_id()
Dnfs4proc.c5592 clp->cl_implid->date.seconds, in nfs4_proc_exchange_id()
5593 clp->cl_implid->date.nseconds); in nfs4_proc_exchange_id()
/fs/befs/
DChangeLog225 * Fixed date format in this file. Was I smoking crack?
/fs/isofs/
Dinode.c1414 inode->i_ctime.tv_sec = iso_date(de->date, high_sierra); in isofs_read_inode()