Home
last modified time | relevance | path

Searched refs:sec32 (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/package/openvmtools/
H A D0012-Make-HgfsConvertFromNtTimeNsec-aware-of-64-bit-time_.patch32 + uint32 sec32, nsec;
67 + Div643232(ntTime - UNIX_EPOCH, 10000000, &sec32, &nsec);
68 + unixTime->tv_sec = sec32;
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/open-vm-tools/open-vm-tools/
H A D0001-Make-HgfsConvertFromNtTimeNsec-aware-of-64-bit-time_.patch33 + uint32 sec32, nsec;
68 + Div643232(ntTime - UNIX_EPOCH, 10000000, &sec32, &nsec);
69 + unixTime->tv_sec = sec32;
/OK3568_Linux_fs/kernel/fs/xfs/
H A Dxfs_ioctl32.c110 old_time32_t sec32; /* tv_sec differs on 64 vs. 32 */ in xfs_ioctl32_bstime_copyin() local
112 if (get_user(sec32, &bstime32->tv_sec) || in xfs_ioctl32_bstime_copyin()
115 bstime->tv_sec = sec32; in xfs_ioctl32_bstime_copyin()
161 __s32 sec32; in xfs_bstime_store_compat() local
163 sec32 = p->tv_sec; in xfs_bstime_store_compat()
164 if (put_user(sec32, &p32->tv_sec) || in xfs_bstime_store_compat()