Lines Matching refs:epoch
137 uint32_t e2di_ctime_extra; /* 132: ctime (nsec << 2 | high epoch) (ext4) */
138 uint32_t e2di_mtime_extra; /* 136: mtime (nsec << 2 | high epoch) (ext4) */
139 uint32_t e2di_atime_extra; /* 140: atime (nsec << 2 | high epoch) (ext4) */
140 uint32_t e2di_crtime; /* 144: creation time (epoch) (ext4) */
141 uint32_t e2di_crtime_extra; /* 148: creation time (nsec << 2 | high epoch) (ext4) */
219 * Lower two bits of extra field are extra high bits for epoch; unfortunately still, Linux kernels treat 11 there as 00 for compatibility
223 ext2fs_dinode_time_get(struct timespec *ts, uint32_t epoch, uint32_t extra)
225 ts->tv_sec = (signed) epoch;
247 ext2fs_dinode_time_set(const struct timespec *ts, uint32_t *epoch, uint32_t *extra)
249 *epoch = (int32_t) ts->tv_sec;