Searched refs:xtime (Results 1 – 14 of 14) sorted by relevance
94 if (now < p->xtime) { in schedular()116 delta = p->xtime - now; in schedular()147 new->xtime = current_time() + tick;164 if (sc->xtime < p->xtime) {257 dst->xtime = p->xtime;316 printf("xtime=%ld\n", p->xtime); in getstdin()
43 time_t xtime; /* event time which is as time(3). */ member72 time_t xtime; member
1330 (long)sc->xtime,
44 struct xtime { struct48 typedef struct xtime xtime; argument
135 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const xtime *xt) in cnd_timedwait()207 mtx_timedlock(mtx_t *mtx, const xtime *xt) in mtx_timedlock()314 thrd_sleep(const xtime *xt) in thrd_sleep()365 xtime_get(xtime *xt, int base) in xtime_get()
149 static DWORD impl_xtime2msec(const xtime *xt) in impl_xtime2msec()209 static int impl_cond_do_wait(cnd_t *cond, mtx_t *mtx, const xtime *xt) in impl_cond_do_wait()381 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const xtime *xt) in cnd_timedwait()441 mtx_timedlock(mtx_t *mtx, const xtime *xt) in mtx_timedlock()578 thrd_sleep(const xtime *xt) in thrd_sleep()633 xtime_get(xtime *xt, int base) in xtime_get()
17 for xtime in atime ctime mtime crtime; do18 echo "set_inode_field $name $xtime @$time"19 echo "set_inode_field $name ${xtime}_extra $extra"47 # confirm that the xtime is wrong on the pre-1970 file
45 #define xtime(x) ((((x) << 1) ^ (((x) & 0x80) != 0 ? 0x1B : 0)) & 0xFF) macro70 UInt32 a2 = xtime(a1); in AesGenTables()79 UInt32 a2 = xtime(a1); in AesGenTables()80 UInt32 a4 = xtime(a2); in AesGenTables()81 UInt32 a8 = xtime(a4); in AesGenTables()
396 #define EXT4_INODE_SET_XTIME(xtime, timespec, raw_inode) \ argument398 (raw_inode)->xtime = (timespec)->tv_sec; \399 if (EXT4_FITS_IN_INODE(raw_inode, xtime ## _extra)) \400 (raw_inode)->xtime ## _extra = \404 #define EXT4_EINODE_SET_XTIME(xtime, timespec, raw_inode) \ argument406 if (EXT4_FITS_IN_INODE(raw_inode, xtime)) \407 (raw_inode)->xtime = (timespec)->tv_sec; \408 if (EXT4_FITS_IN_INODE(raw_inode, xtime ## _extra)) \409 (raw_inode)->xtime ## _extra = \413 #define EXT4_INODE_GET_XTIME(xtime, timespec, raw_inode) \ argument[all …]
194 char *inode_time_to_string(__u32 xtime, __u32 xtime_extra) in inode_time_to_string() argument196 __s64 t = (__s32) xtime; in inode_time_to_string()
39 extern char *inode_time_to_string(__u32 xtime, __u32 xtime_extra);
95 - c11/threads: Include thr/xtimec.h for xtime definition when building
558 static int check_inode_extra_negative_epoch(__u32 xtime, __u32 extra) { in check_inode_extra_negative_epoch() argument559 return (xtime & (1U << 31)) != 0 && in check_inode_extra_negative_epoch()563 #define CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, xtime) \ argument564 check_inode_extra_negative_epoch(inode->i_##xtime, \565 inode->i_##xtime##_extra)
1Index: linux/arch/i386/Kconfig.debug 2====== ...