Symbol: newtime
usr/src/cmd/cron/cron.c
430
time_t newtime, lastmtime = 0L;
usr/src/cmd/cron/cron.c
610
newtime = 30 - (last_time % 30);
usr/src/cmd/cron/cron.c
611
newtime += last_time;
usr/src/cmd/cron/cron.c
619
next_time(next_event, newtime);
usr/src/cmd/ed/ed.c
299
static void newtime(void);
usr/src/cmd/ed/ed.c
862
newtime();
usr/src/cmd/ed/ed.c
887
newtime();
usr/src/cmd/sgs/libconv/common/time.c
38
conv_time(struct timeval *oldtime, struct timeval *newtime,
usr/src/cmd/sgs/libconv/common/time.c
45
sec = newtime->tv_sec - oldtime->tv_sec;
usr/src/cmd/sgs/libconv/common/time.c
46
if (newtime->tv_usec >= oldtime->tv_usec)
usr/src/cmd/sgs/libconv/common/time.c
47
usec = newtime->tv_usec - oldtime->tv_usec;
usr/src/cmd/sgs/libconv/common/time.c
49
usec = (newtime->tv_usec + MICROSEC) - oldtime->tv_usec;
usr/src/cmd/streams/log/strerr.c
76
time_t newtime;
usr/src/cmd/streams/log/strerr.c
79
newtime = lp->ttime - timezone;
usr/src/cmd/streams/log/strerr.c
84
if (((newtime/NSECDAY) != (lasttime/NSECDAY)) || !log) {
usr/src/cmd/streams/log/strerr.c
87
lasttime = newtime;
usr/src/cmd/streams/log/strerr.c
91
lasttime = newtime;
usr/src/lib/libbsm/common/devalloc.c
184
time_t newtime;
usr/src/lib/libbsm/common/devalloc.c
198
newtime = f_stat.st_mtime;
usr/src/lib/libbsm/common/devalloc.c
201
while (newtime > *ftime) {
usr/src/lib/libbsm/common/devalloc.c
244
newtime = f_stat.st_mtime;
usr/src/lib/libbsm/common/devalloc.c
247
*ftime = newtime;
usr/src/lib/libkmf/plugins/kmf_pkcs11/common/pkcs11_spi.c
3169
char newtime[9];
usr/src/lib/libkmf/plugins/kmf_pkcs11/common/pkcs11_spi.c
3176
(void) strftime(newtime, sizeof (newtime), "m%d", &tms);
usr/src/lib/libkmf/plugins/kmf_pkcs11/common/pkcs11_spi.c
3178
newtime[8] = 0;
usr/src/lib/libkmf/plugins/kmf_pkcs11/common/pkcs11_spi.c
3181
return ((char *)strdup(newtime));
usr/src/ucbcmd/touch/touch.c
70
static struct tm newtime;
usr/src/ucbcmd/touch/touch.c
73
newtime.tm_mon = gpair() - 1;
usr/src/ucbcmd/touch/touch.c
74
newtime.tm_mday = gpair();
usr/src/ucbcmd/touch/touch.c
75
newtime.tm_hour = gpair();
usr/src/ucbcmd/touch/touch.c
76
if (newtime.tm_hour == 24) {
usr/src/ucbcmd/touch/touch.c
77
newtime.tm_hour = 0;
usr/src/ucbcmd/touch/touch.c
78
newtime.tm_mday++;
usr/src/ucbcmd/touch/touch.c
80
newtime.tm_min = gpair();
usr/src/ucbcmd/touch/touch.c
81
newtime.tm_sec = 0;
usr/src/ucbcmd/touch/touch.c
82
newtime.tm_year = gpair();
usr/src/ucbcmd/touch/touch.c
83
if (newtime.tm_year < 0) {
usr/src/ucbcmd/touch/touch.c
85
newtime.tm_year = localtime(&nt)->tm_year;
usr/src/ucbcmd/touch/touch.c
87
return (&newtime);
usr/src/uts/common/os/lgrp.c
541
u_longlong_t newtime)
usr/src/uts/common/os/lgrp.c
555
lgrp->lgrp_latency = (int)newtime;
usr/src/uts/common/os/msacct.c
403
hrtime_t newtime;
usr/src/uts/common/os/msacct.c
416
newtime = curtime - ms->ms_state_start;
usr/src/uts/common/os/msacct.c
417
while (newtime < 0) {
usr/src/uts/common/os/msacct.c
419
newtime = curtime - ms->ms_state_start;
usr/src/uts/common/os/msacct.c
421
*mstimep += newtime;
usr/src/uts/common/os/msacct.c
431
ZONE_USTATE_UTIME) += newtime;
usr/src/uts/common/os/msacct.c
434
ZONE_USTATE_STIME) += newtime;
usr/src/uts/common/os/msacct.c
564
cpu_update_pct(kthread_t *t, hrtime_t newtime)
usr/src/uts/common/os/msacct.c
580
delta = newtime - hrlb;
usr/src/uts/common/os/msacct.c
582
newtime = gethrtime_unscaled();
usr/src/uts/common/os/msacct.c
583
delta = newtime - hrlb;
usr/src/uts/common/os/msacct.c
585
t->t_hrtime = newtime;
usr/src/uts/common/os/msacct.c
609
hrtime_t newtime;
usr/src/uts/common/os/msacct.c
650
ztime = newtime = curtime - ms->ms_state_start;
usr/src/uts/common/os/msacct.c
651
if (newtime < 0) {
usr/src/uts/common/os/msacct.c
657
newtime += oldtime;
usr/src/uts/common/os/msacct.c
660
} while (atomic_cas_64((uint64_t *)mstimep, oldtime, newtime) !=
usr/src/uts/common/os/msacct.c
717
hrtime_t newtime;
usr/src/uts/common/os/msacct.c
782
newtime = waitrq - ms->ms_state_start;
usr/src/uts/common/os/msacct.c
783
if (newtime < 0) {
usr/src/uts/common/os/msacct.c
789
newtime += oldtime;
usr/src/uts/common/os/msacct.c
790
} while (atomic_cas_64((uint64_t *)mstimep, oldtime, newtime) !=
usr/src/uts/i86pc/os/machdep.c
1068
hrtime_t newtime;
usr/src/uts/i86pc/os/machdep.c
1070
newtime = xpv_gethrtime() + 10000; /* now + 10 us */
usr/src/uts/i86pc/os/machdep.c
1071
while (xpv_gethrtime() < newtime)
usr/src/uts/intel/io/vmm/io/vrtc.c
687
const time_t newtime = vrtc_curtime(vrtc, &base_clock, NULL);
usr/src/uts/intel/io/vmm/io/vrtc.c
688
if (vrtc->base_rtctime >= newtime) {
usr/src/uts/intel/io/vmm/io/vrtc.c
701
vrtc->base_rtctime = newtime;
usr/src/uts/intel/io/vmm/io/vrtc.c
702
} else if ((newtime - vrtc->base_rtctime) >= SEC_PER_DAY) {
usr/src/uts/intel/io/vmm/io/vrtc.c
710
vrtc->base_rtctime = newtime;
usr/src/uts/intel/io/vmm/io/vrtc.c
737
vrtc->base_rtctime = newtime;
usr/src/uts/intel/io/vmm/io/vrtc.c
739
} while (vrtc->base_rtctime != newtime);