Searched defs:tms (Results 1 - 5 of 5) sorted by relevance

/external/kernel-headers/original/linux/
H A Dtimes.h6 struct tms { struct
/external/chromium/base/
H A Dtime_unittest.cc20 struct tm tms; local
22 localtime_s(&tms, &now_t_1);
24 localtime_r(&now_t_1, &tms);
33 EXPECT_EQ(tms.tm_year + 1900, exploded.year);
34 EXPECT_EQ(tms.tm_mon + 1, exploded.month);
35 EXPECT_EQ(tms.tm_mday, exploded.day_of_month);
36 EXPECT_EQ(tms.tm_hour, exploded.hour);
37 EXPECT_EQ(tms.tm_min, exploded.minute);
38 EXPECT_EQ(tms.tm_sec, exploded.second);
/external/bison/lib/
H A Dtimevar.c56 struct tms struct
69 extern clock_t times (struct tms *);
212 struct tms tms; local
213 now->wall = times (&tms) * ticks_to_msec;
215 now->user = tms.tms_utime * ticks_to_msec;
216 now->sys = tms.tms_stime * ticks_to_msec;
218 now->user = (tms.tms_utime + tms.tms_cutime) * ticks_to_msec;
219 now->sys = (tms
[all...]
/external/mksh/src/
H A Dmisc.c1422 struct tms tms; local
1425 if (/* ru == NULL || */ times(&tms) == (clock_t)-1)
1430 u = tms.tms_utime;
1431 s = tms.tms_stime;
1434 u = tms.tms_cutime;
1435 s = tms.tms_cstime;
/external/kernel-headers/original/asm-x86/
H A Dvoyager.h432 __u8 tms; member in struct:voyager_psi_regs

Completed in 208 milliseconds