Home
last modified time | relevance | path

Searched refs:tms (Results 1 – 12 of 12) sorted by relevance

/glibc-2.36/time/
Dtst-getdate.c134 struct tm tms; in do_test() local
135 TEST_COMPARE (getdate_r (tests[i].str, &tms), 0); in do_test()
138 TEST_COMPARE (tests[i].tm.tm_mon, tms.tm_mon); in do_test()
139 TEST_COMPARE (tests[i].tm.tm_year, tms.tm_year); in do_test()
140 TEST_COMPARE (tests[i].tm.tm_mday, tms.tm_mday); in do_test()
141 TEST_COMPARE (tests[i].tm.tm_hour, tms.tm_hour); in do_test()
142 TEST_COMPARE (tests[i].tm.tm_min, tms.tm_min); in do_test()
143 TEST_COMPARE (tests[i].tm.tm_sec, tms.tm_sec); in do_test()
Dtst-gmtime.c43 struct tm tms; in do_test() local
44 struct tm *tmg = gmtime_r (&t, &tms); in do_test()
45 TEST_VERIFY (tmg == &tms); in do_test()
74 struct tm tms; in do_test() local
75 struct tm *tmg = gmtime_r (&t, &tms); in do_test()
76 TEST_VERIFY (tmg == &tms); in do_test()
107 struct tm tms; in do_test() local
108 struct tm *tmg = gmtime_r (&t, &tms); in do_test()
109 TEST_VERIFY (tmg == &tms); in do_test()
/glibc-2.36/conform/data/sys/
Dtimes.h-data2 type {struct tms}
4 element {struct tms} clock_t tms_utime
5 element {struct tms} clock_t tms_stime
6 element {struct tms} clock_t tms_cutime
7 element {struct tms} clock_t tms_cstime
11 function clock_t times (struct tms*)
/glibc-2.36/sysdeps/mach/hurd/
Dtimes.c40 __times (struct tms *tms) in __times() argument
60 tms->tms_utime = (clock_from_time_value (&bi.user_time) in __times()
62 tms->tms_stime = (clock_from_time_value (&bi.system_time) in __times()
66 tms->tms_cutime = tms->tms_cstime = 0; in __times()
/glibc-2.36/sysdeps/pthread/
Dtst-mutex-errorcheck.c28 struct timespec tms = { 0 }; in do_test() local
44 TEST_COMPARE (pthread_mutex_timedlock (&mutex, &tms), 0); in do_test()
45 TEST_COMPARE (pthread_mutex_timedlock (&mutex, &tms), EDEADLK); in do_test()
/glibc-2.36/posix/sys/
Dtimes.h32 struct tms struct
46 extern clock_t times (struct tms *__buffer) __THROW;
/glibc-2.36/include/sys/
Dtimes.h6 extern clock_t __times (struct tms *__buffer);
/glibc-2.36/sysdeps/posix/
Dclock.c25 struct tms buf; in clock()
/glibc-2.36/posix/
Dtimes.c27 __times (struct tms *buffer) in __times()
/glibc-2.36/sysdeps/unix/sysv/linux/
Dtimes.c24 __times (struct tms *buf) in __times()
/glibc-2.36/crypt/
Dspeeds.c38 struct tms tstart, tfinish;
/glibc-2.36/manual/
Dtime.texi341 consumption of processor time in a @w{@code{struct tms}} object, in
348 @deftp {Data Type} {struct tms}
350 The @code{tms} structure is used to return information about process
390 @deftypefun clock_t times (struct tms *@var{buffer})
394 @c adding user and system times into tms, and then gettimeofday, to