Searched defs:tms (Results 1 - 7 of 7) 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/libnfc-nci/src/nfc/int/
H A Dtags_int.h44 UINT8 tms; member in struct:__anon7926
58 UINT8 tms; member in struct:__anon7927
/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/libnfc-nci/src/nfc/tags/
H A Drw_t2t_ndef.c62 static tNFC_STATUS rw_t2t_set_cc (UINT8 tms);
1823 UINT16 tms = 0; local
1828 tms = (UINT16) (LchunkSize * Num_LChuncks);
1830 tms += (T2T_STATIC_SIZE - T2T_HEADER_SIZE);
1832 tms /= 0x08;
1834 return (UINT8) tms;
1962 UINT8 tms; local
1988 tms = rw_t2t_get_tag_size (p_data);
1992 tms = p_ret->tms;
2633 rw_t2t_set_cc(UINT8 tms) argument
2679 UINT8 tms; local
[all...]
/external/mksh/src/
H A Dmisc.c1983 struct tms tms; local
1986 if (/* ru == NULL || */ times(&tms) == (clock_t)-1)
1991 u = tms.tms_utime;
1992 s = tms.tms_stime;
1995 u = tms.tms_cutime;
1996 s = tms.tms_cstime;
/external/kernel-headers/original/asm-x86/
H A Dvoyager.h432 __u8 tms; member in struct:voyager_psi_regs

Completed in 546 milliseconds