Searched refs:tms (Results 1 – 12 of 12) sorted by relevance
/glibc-2.36/time/ |
D | tst-getdate.c | 134 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()
|
D | tst-gmtime.c | 43 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/ |
D | times.h-data | 2 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/ |
D | times.c | 40 __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/ |
D | tst-mutex-errorcheck.c | 28 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/ |
D | times.h | 32 struct tms struct 46 extern clock_t times (struct tms *__buffer) __THROW;
|
/glibc-2.36/include/sys/ |
D | times.h | 6 extern clock_t __times (struct tms *__buffer);
|
/glibc-2.36/sysdeps/posix/ |
D | clock.c | 25 struct tms buf; in clock()
|
/glibc-2.36/posix/ |
D | times.c | 27 __times (struct tms *buffer) in __times()
|
/glibc-2.36/sysdeps/unix/sysv/linux/ |
D | times.c | 24 __times (struct tms *buf) in __times()
|
/glibc-2.36/crypt/ |
D | speeds.c | 38 struct tms tstart, tfinish;
|
/glibc-2.36/manual/ |
D | time.texi | 341 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
|