Home
last modified time | relevance | path

Searched refs:DWORD (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/tests/subsys/fs/fat_fs_api/src/
Dmain.c15 DWORD get_fattime(void) in get_fattime()
24 return (DWORD)(cal->tm_year - 80) << 25 | (DWORD)(cal->tm_mon + 1) << 21 | in get_fattime()
25 (DWORD)cal->tm_mday << 16 | (DWORD)cal->tm_hour << 11 | (DWORD)cal->tm_min << 5 | in get_fattime()
26 (DWORD)cal->tm_sec >> 1; in get_fattime()
/Zephyr-latest/subsys/fs/
Dfat_fs.c420 DWORD f_bfree = 0; in fatfs_statvfs()