ut 387 compat/hpux/hpux_compat.c struct hpux_utsname ut;
ut 393 compat/hpux/hpux_compat.c bzero(&ut, sizeof(ut));
ut 395 compat/hpux/hpux_compat.c strlcpy(ut.sysname, ostype, sizeof(ut.sysname));
ut 399 compat/hpux/hpux_compat.c ut.nodename[i] = hostname[i];
ut 400 compat/hpux/hpux_compat.c ut.nodename[i] = '\0';
ut 402 compat/hpux/hpux_compat.c strlcpy(ut.release, osrelease, sizeof(ut.release));
ut 403 compat/hpux/hpux_compat.c strlcpy(ut.version, version, sizeof(ut.version));
ut 404 compat/hpux/hpux_compat.c strlcpy(ut.machine, machine, sizeof(ut.machine));
ut 406 compat/hpux/hpux_compat.c error = copyout((caddr_t)&ut,
ut 407 compat/hpux/hpux_compat.c (caddr_t)SCARG(uap, uts), sizeof(ut));
ut 163 kern/kern_acct.c struct timeval ut, st, tmp;
ut 192 kern/kern_acct.c calcru(p, &ut, &st, NULL);
ut 193 kern/kern_acct.c acct.ac_utime = encode_comp_t(ut.tv_sec, ut.tv_usec);
ut 204 kern/kern_acct.c timeradd(&ut, &st, &tmp);
ut 324 kern/kern_resource.c u_quad_t st, ut, it;
ut 330 kern/kern_resource.c ut = p->p_uticks;
ut 334 kern/kern_resource.c if (st + ut + it == 0) {
ut 347 kern/kern_resource.c ut = ut * 1000000 / freq;
ut 348 kern/kern_resource.c up->tv_sec = ut / 1000000;
ut 349 kern/kern_resource.c up->tv_usec = ut % 1000000;
ut 1191 kern/kern_sysctl.c struct timeval ut, st;
ut 1316 kern/kern_sysctl.c calcru(p, &ut, &st, 0);
ut 1317 kern/kern_sysctl.c ki->p_uutime_sec = ut.tv_sec;
ut 1318 kern/kern_sysctl.c ki->p_uutime_usec = ut.tv_usec;
ut 1338 kern/kern_sysctl.c &p->p_stats->p_cru.ru_stime, &ut);
ut 1339 kern/kern_sysctl.c ki->p_uctime_sec = ut.tv_sec;
ut 1340 kern/kern_sysctl.c ki->p_uctime_usec = ut.tv_usec;
ut 71 miscfs/procfs/procfs_status.c struct timeval ut, st;
ut 123 miscfs/procfs/procfs_status.c calcru(p, &ut, &st, (void *) 0);
ut 125 miscfs/procfs/procfs_status.c ut.tv_sec, ut.tv_usec, st.tv_sec, st.tv_usec);