HomeSort by relevance Sort by last modified time
    Searched defs:hrt (Results 1 - 23 of 23) sorted by null

  /onnv/onnv-gate/usr/src/cmd/wusbadm/
crypto_util.c 98 hrtime_t hrt; local
101 hrt = gethrtime() + gethrvtime();
102 if (C_SeedRandom(hSession, (CK_BYTE *)&hrt,
103 sizeof (hrt)) != CKR_OK) {
  /onnv/onnv-gate/usr/src/cmd/fm/modules/sun4u/fps-transport/
fps-transport.c 81 hrtime_t hrt; local
95 sysevent_get_time(ev, &hrt);
96 fmd_xprt_post(h_fmd, h_xprt, retrieved_list, hrt);
  /onnv/onnv-gate/usr/src/cmd/fm/fmd/common/
fmd_timerq.c 55 hrtime_t hrt; local
76 hrt = INT64_MAX; /* if wrap-around, set timer for apocalypse */
78 hrt = base + delta;
80 tp->tmr_hrt = hrt;
216 TRACE((FMD_DBG_TMR, "tmr %s:%ld exec start (hrt=%llx)",
fmd_eventq.c 150 hrtime_t hrt = fmd_event_hrtime(ep); local
181 if (hrt >= fmd_event_hrtime(oqe->eqe_event))
fmd_serd.c 259 hrtime_t hrt; local
265 hrt = fmd_event_hrtime(sep->se_event) - sgp->sg_t;
268 if (fmd_event_hrtime(sep->se_event) >= hrt)
fmd_subr.c 337 hrtime_t hrt = fmd_time_gethrtime(); local
341 ((hrt << ENA_FMT1_TIME_SHFT) & ENA_FMT1_TIME_MASK)));
fmd_time.c 117 fmd_time_hrt2ftv(hrtime_t hrt, fmd_timeval_t *ftv)
121 tmp = (uint32_t)(hrt >> 30);
133 nsec = (uint32_t)hrt - (tmp << 9);
147 * between the corresponding 'hrt_base' and the event high-res time 'hrt',
152 hrtime_t hrt, fmd_timeval_t *ftv)
155 tod_base->ftv_nsec + (hrt - hrt_base), ftv);
178 * between these bits and the corresponding low bits of 'hrt' from 'hrt'.
181 * the full 64-bit hrtime of 't0' can be bigger than 'hrt'. In such case,
182 * we should just return 'hrt'
257 hrtime_t tod, hrt, sec, rem; local
279 hrtime_t hrt; local
311 uint64_t hrt; local
    [all...]
fmd_sysevent.c 104 hrtime_t hrt; local
136 sysevent_get_time(sep, &hrt);
138 e = fmd_event_create(FMD_EVT_PROTOCOL, hrt, nvl, fullclass);
156 hrtime_t hrt; local
187 sysevent_get_time(sep, &hrt);
188 fmd_xprt_post(sysev_hdl, xp, nvl, hrt);
287 hrtime_t hrt; local
361 hrt = ed.ed_hrt_nsec;
363 hrt = ed.ed_hrt_base;
367 * contains valid ENA, we can improve the precision of 'hrt'
    [all...]
fmd_asru.c 719 hrtime_t hrt; local
746 hrt = (hrtime_t)(tv.tv_sec - lp->log_stat.st_mtime);
748 if (hrt * NANOSEC >= fmd.d_asrus->ah_lifetime) {
763 hrtime_t hrt; local
774 hrt = (hrtime_t)(tv.tv_sec - lp->log_stat.st_mtime);
776 if (hrt * NANOSEC < fmd.d_asrus->ah_lifetime)
785 uint64_t hrt; local
793 hrt = lp->log_stat.st_mtime;
795 if (*(uint64_t *)arg < hrt)
796 *(uint64_t *)arg = hrt;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/filebench/common/
misc.c 75 uint64_t hrt; local
78 hrt = 1000000000UL * rdtsc() / cpu_hz;
79 return (hrt);
134 uint64_t hrt; local
138 hrt = (uint64_t)tv.tv_sec * 1000000000UL +
140 return (hrt);
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/tools/rds/
rdutil.c 259 hrtime_t hrt; local
272 hrt = gethrtime() / 1000000;
276 call_cnt++, hrt - hrt_base, buf)) != -1)
294 hrtime_t hrt; local
308 hrt = gethrtime() / 1000000;
312 call_cnt++, hrt - hrt_base, buf, err,
  /onnv/onnv-gate/usr/src/cmd/cpc/common/
cputrack.c 466 hrtime_t hrt; local
476 hrt = cpc_buf_hrtime(cpc, *data1);
477 if (hrt == 0)
481 if (now < mstimestamp(hrt))
482 now = mstimestamp(hrt);
  /onnv/onnv-gate/usr/src/uts/i86pc/os/
intr.c 766 hrtime_t hrt; local
772 hrt = (hrtime_t)cpup->cpu_m.intrstat[i + 1][0];
773 scalehrtimef(&hrt);
774 knp[i * 2].value.ui64 = (uint64_t)hrt;
timestamp.c 125 #define TSC_CONVERT_AND_ADD(tsc, hrt, scale) { \
127 (hrt) += mul32(_l[1], scale) << NSEC_SHIFT; \
128 (hrt) += mul32(_l[0], scale) >> (32 - NSEC_SHIFT); \
131 #define TSC_CONVERT(tsc, hrt, scale) { \
133 (hrt) = mul32(_l[1], scale) << NSEC_SHIFT; \
134 (hrt) += mul32(_l[0], scale) >> (32 - NSEC_SHIFT); \
163 hrtime_t tsc, hrt; local
189 hrt = tsc_hrtime_base;
191 TSC_CONVERT_AND_ADD(tsc, hrt, nsec_scale);
194 return (hrt);
201 hrtime_t tsc, hrt; local
246 hrtime_t tsc, hrt; local
364 hrtime_t hrt; local
378 hrtime_t hrt; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/i86xpv/os/
xpv_panic.c 628 hrtime_t tsc, hrt; local
632 hrt = (mul32(l[1], nsec_scale) << NSEC_SHIFT) +
635 return (hrt);
  /onnv/onnv-gate/usr/src/uts/common/os/
timers.c 981 * tsp->sec = hrt / NANOSEC;
982 * tsp->nsec = hrt % NANOSEC;
1047 * sec = hrt;
1048 * sec += (hrt << 6);
1049 * sec -= (hrt << 8);
1050 * sec += (hrt << 13);
1051 * sec += (hrt << 14);
1052 * sec -= (hrt << 20);
1053 * sec += (hrt << 23);
1054 * sec += (hrt << 24)
1210 hrtime_t hrt; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/ib/mgt/ibcm/
ibcm_utils.c 1632 hrtime_t hrt; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsysevent/
libsysevent.c 687 hrtime_t hrt; local
690 (void) sysevent_get_time(ev, &hrt);
692 hrt, (longlong_t)sysevent_get_seq(ev));
    [all...]
  /onnv/onnv-gate/usr/src/uts/i86pc/io/fipe/
fipe_pm.c 1136 hrtime_t hrt; local
1167 hrtime_t hrt; local
    [all...]
  /onnv/onnv-gate/usr/src/stand/lib/tcp/
tcp.c 6312 uint32_t hrt; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/fs/
vfs.c 2986 static volatile hrtime_t hrt; \/* The saved time. *\/ local
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4u/cpu/
us3_common.c 628 hrtime_t hrt; /* maximum recovery time */ member in struct:__anon94
976 CHEETAH_LIVELOCK_MAXSTAT(hrt, (end_hrt - begin_hrt));
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/inet/tcp/
tcp.c 18207 hrtime_t hrt; local
    [all...]

Completed in 780 milliseconds