Searched refs:tms (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-cn3010-evb-hs5.c81 static int validate_tm_struct(struct tm * tms) argument
85 if (!tms)
88 TM_CHECK(tms->tm_sec < 0 || tms->tm_sec > 60, "second"); /* + Leap sec */
89 TM_CHECK(tms->tm_min < 0 || tms->tm_min > 59, "minute");
90 TM_CHECK(tms->tm_hour < 0 || tms->tm_hour > 23, "hour");
91 TM_CHECK(tms->tm_mday < 1 || tms
110 struct tm tms; local
156 struct tm tms; local
[all...]
/freebsd-9.3-release/sys/sys/
H A Dtimes.h48 struct tms { struct
59 clock_t times(struct tms *);
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dclock.c80 struct tms tms;
82 times (&tms);
83 return (tms.tms_utime + tms.tms_stime) * (1000000 / GNU_HZ);
H A Dgetruntime.c103 struct tms tms;
105 times (&tms);
106 return (tms.tms_utime + tms.tms_stime) * (1000000 / GNU_HZ);
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dclock.c80 struct tms tms;
82 times (&tms);
83 return (tms.tms_utime + tms.tms_stime) * (1000000 / GNU_HZ);
H A Dgetruntime.c103 struct tms tms;
105 times (&tms);
106 return (tms.tms_utime + tms.tms_stime) * (1000000 / GNU_HZ);
/freebsd-9.3-release/contrib/gcc/
H A Dtimevar.c41 struct tms struct
74 extern clock_t times (struct tms *);
202 struct tms tms; local
203 now->wall = times (&tms) * ticks_to_msec;
204 now->user = tms.tms_utime * ticks_to_msec;
205 now->sys = tms.tms_stime * ticks_to_msec;
H A Dsys-types.h13 struct tms;
/freebsd-9.3-release/lib/libc/gen/
H A Dtimes.c49 struct tms *tp;
/freebsd-9.3-release/contrib/tcsh/
H A Dsh.decls.h421 extern void prusage (struct tms *, struct tms *,
424 extern void prusage (struct tms *, struct tms *,
H A Dsh.time.c50 struct tms times0;
131 struct tms times_dol;
288 prusage(struct tms *bs, struct tms *es, time_t e, time_t b)
291 prusage(struct tms *bs, struct tms *es, clock_t e, clock_t b)
355 * the tms stuff is not very precise, so we fudge it.
/freebsd-9.3-release/crypto/openssl/crypto/bf/
H A Dbfspeed.c82 * Depending on the VMS version, the tms structure is perhaps defined.
136 static struct tms tstart, tend;
H A Dbf_opts.c84 * Depending on the VMS version, the tms structure is perhaps defined.
161 static struct tms tstart, tend;
/freebsd-9.3-release/crypto/openssl/crypto/rc5/
H A Drc5speed.c82 * Depending on the VMS version, the tms structure is perhaps defined.
136 static struct tms tstart, tend;
/freebsd-9.3-release/crypto/openssl/crypto/
H A Dtmdiff.c88 * Depending on the VMS version, the tms structure is perhaps defined. The
132 struct tms ms_tms;
/freebsd-9.3-release/crypto/openssl/crypto/rc4/
H A Drc4speed.c82 * Depending on the VMS version, the tms structure is perhaps defined.
136 static struct tms tstart, tend;
/freebsd-9.3-release/crypto/openssl/crypto/cast/
H A Dcast_spd.c82 * Depending on the VMS version, the tms structure is perhaps defined.
136 static struct tms tstart, tend;
H A Dcastopts.c84 * Depending on the VMS version, the tms structure is perhaps defined.
171 static struct tms tstart, tend;
/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbnspeed.c87 * Depending on the VMS version, the tms structure is perhaps defined. The
134 static struct tms tstart, tend;
/freebsd-9.3-release/crypto/openssl/crypto/rc2/
H A Drc2speed.c82 * Depending on the VMS version, the tms structure is perhaps defined.
136 static struct tms tstart, tend;
/freebsd-9.3-release/sys/i386/ibcs2/
H A Dibcs2_misc.c882 struct tms tms; local
890 tms.tms_utime = CONVTCK(ru.ru_utime);
891 tms.tms_stime = CONVTCK(ru.ru_stime);
896 tms.tms_cutime = CONVTCK(ru.ru_utime);
897 tms.tms_cstime = CONVTCK(ru.ru_stime);
902 return (copyout(&tms, uap->tp, sizeof(struct tms)));
H A Dibcs2_proto.h158 char tp_l_[PADL_(struct tms *)]; struct tms * tp; char tp_r_[PADR_(struct tms *)];
/freebsd-9.3-release/sys/compat/svr4/
H A Dsvr4_misc.c864 struct tms tms; local
876 tms.tms_utime = timeval_to_clock_t(&utime);
877 tms.tms_stime = timeval_to_clock_t(&stime);
879 tms.tms_cutime = timeval_to_clock_t(&cutime);
880 tms.tms_cstime = timeval_to_clock_t(&cstime);
882 error = copyout(&tms, uap->tp, sizeof(tms));
/freebsd-9.3-release/crypto/openssl/crypto/des/
H A Dspeed.c83 * Depending on the VMS version, the tms structure is perhaps defined.
141 static struct tms tstart, tend;
/freebsd-9.3-release/crypto/openssl/crypto/idea/
H A Didea_spd.c82 * Depending on the VMS version, the tms structure is perhaps defined.
136 static struct tms tstart, tend;

Completed in 180 milliseconds

12