HomeSort by: relevance | last modified time | path
    Searched defs:tms (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/sys/
times.h 49 struct tms { struct
61 clock_t times(struct tms *) __RENAME(__times13);
  /src/tests/lib/libc/time/
t_mktime.c 67 struct tm tms; local in function:ATF_TC_BODY
70 (void)memset(&tms, 0, sizeof(tms));
71 tms.tm_year = -1;
72 tms.tm_mday = 1;
75 t = mktime(&tms);
87 struct tm tms; local in function:ATF_TC_BODY
91 (void)memset(&tms, 0, sizeof(tms));
93 tms.tm_year = 1970 - 1900
    [all...]
  /src/usr.bin/touch/
touch.c 365 struct tm tm, tms; local in function:stime_posix
494 tms = tm;
500 if ((errno != 0 && tsp[1].tv_sec == NO_TIME) || difftm(&tm, &tms))
  /src/bin/ksh/
c_sh.c 708 struct tms all;
731 struct tms t0, t1, tms; local in function:timex
759 tms.tms_utime = t0.tms_utime + t0.tms_cutime;
760 tms.tms_stime = t0.tms_stime + t0.tms_cstime;
762 tms.tms_utime = t1.tms_utime - t0.tms_utime + j_usrtime;
763 tms.tms_stime = t1.tms_stime - t0.tms_stime + j_systime;
771 clocktos(tms.tms_utime));
773 clocktos(tms.tms_stime));
  /src/bin/sh/
eval.c 1839 struct tms tms; local in function:timescmd
1845 times(&tms);
1847 u = conv_time(tms.tms_utime, us, sizeof(us));
1848 s = conv_time(tms.tms_stime, ss, sizeof(ss));
1849 cu = conv_time(tms.tms_cutime, cus, sizeof(cus));
1850 cs = conv_time(tms.tms_cstime, css, sizeof(css));
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 2160 struct tm tms; local in function:TEST
2161 struct tm *tmres = localtime_r(&t, &tms);

Completed in 16 milliseconds