Symbol: hz
usr/src/boot/sys/sys/time.h
330
int hz; /* clock frequency */
usr/src/cmd/cron/cron.c
3111
char *hz, *tz;
usr/src/cmd/cron/cron.c
3116
if ((hz = getenv("HZ")) == (char *)NULL)
usr/src/cmd/cron/cron.c
3119
(void) snprintf(hzname, sizeof (hzname), "HZ=%s", hz);
usr/src/cmd/raidz_test/raidz_test.c
665
ddi_get_lbolt() + hz)) {
usr/src/cmd/rpcsvc/rstat_proc.c
375
stats_s3.v_intr -= hz*(stats_s3.curtime.tv_sec - btm.tv_sec) +
usr/src/cmd/rpcsvc/rstat_proc.c
376
hz*(stats_s3.curtime.tv_usec - btm.tv_usec)/1000000;
usr/src/cmd/rpcsvc/rstat_proc.c
72
static int hz;
usr/src/cmd/sa/sar.c
1113
sec_diff = tdiff / hz;
usr/src/cmd/sa/sar.c
280
hz = sysconf(_SC_CLK_TCK);
usr/src/cmd/sa/sar.c
542
sec_diff = tdiff / hz;
usr/src/cmd/sa/sar.c
90
static int hz;
usr/src/cmd/sa/timex.c
215
tk = total % hz; /* ticks % hz */
usr/src/cmd/sa/timex.c
216
total /= hz;
usr/src/cmd/sa/timex.c
254
(void) fprintf(stderr, "%02ld\n", tk * 100/hz);
usr/src/cmd/sa/timex.c
48
static int hz;
usr/src/cmd/sa/timex.c
77
hz = sysconf(_SC_CLK_TCK);
usr/src/cmd/sa/timex.c
78
nsec_per_tick = NANOSEC / hz;
usr/src/cmd/sgs/gprof/common/gprof.c
1891
hz = sysconf(_SC_CLK_TCK);
usr/src/cmd/sgs/gprof/common/gprof.c
1892
if (hz == -1) {
usr/src/cmd/sgs/gprof/common/gprof.c
1893
hz = 1;
usr/src/cmd/sgs/gprof/common/gprof.c
63
long hz;
usr/src/cmd/sgs/gprof/common/gprof.h
88
extern long hz;
usr/src/cmd/sgs/gprof/common/printgprof.c
149
100.0/totime, totime / hz);
usr/src/cmd/sgs/gprof/common/printgprof.c
183
100 * np->time / totime, actime / hz, np->time / hz);
usr/src/cmd/sgs/gprof/common/printgprof.c
187
1000 * np->time / hz / np->ncall,
usr/src/cmd/sgs/gprof/common/printgprof.c
188
1000 * (np->time + np->childtime) / hz / np->ncall);
usr/src/cmd/sgs/gprof/common/printgprof.c
219
100.0/printtime, printtime / hz);
usr/src/cmd/sgs/gprof/common/printgprof.c
231
if (hz != 1) {
usr/src/cmd/sgs/gprof/common/printgprof.c
233
(double)1.0 / hz);
usr/src/cmd/sgs/gprof/common/printgprof.c
256
np->propself / hz, np->propchild / hz);
usr/src/cmd/sgs/gprof/common/printgprof.c
434
"", arcp->arc_time / hz, arcp->arc_childtime / hz,
usr/src/cmd/sgs/gprof/common/printgprof.c
477
arcp->arc_time / hz,
usr/src/cmd/sgs/gprof/common/printgprof.c
478
arcp->arc_childtime / hz, arcp->arc_count,
usr/src/cmd/sgs/gprof/common/printgprof.c
483
"", "", arcp->arc_time / hz,
usr/src/cmd/sgs/gprof/common/printgprof.c
484
arcp->arc_childtime / hz, arcp->arc_count,
usr/src/cmd/sgs/gprof/common/printgprof.c
644
cyclep -> propself / hz, cyclep -> propchild / hz,
usr/src/cmd/sgs/gprof/common/printgprof.c
668
memberp->propself / hz, memberp->propchild / hz,
usr/src/cmd/stat/iostat/iostat.c
206
long hz;
usr/src/cmd/stat/iostat/iostat.c
254
hz = sysconf(_SC_CLK_TCK);
usr/src/cmd/stat/iostat/iostat.c
293
getime = (getime / nr_active_cpus(newss)) / hz;
usr/src/cmd/stat/mpstat/mpstat.c
142
hz = sysconf(_SC_CLK_TCK);
usr/src/cmd/stat/mpstat/mpstat.c
247
etime = (double)ticks / hz;
usr/src/cmd/stat/mpstat/mpstat.c
250
percent = 100.0 / etime / hz;
usr/src/cmd/stat/mpstat/mpstat.c
433
etime = (double)ticks / hz;
usr/src/cmd/stat/mpstat/mpstat.c
436
percent = 100.0 / p2->ps_nr_cpus / etime / hz;
usr/src/cmd/stat/mpstat/mpstat.c
58
static int hz;
usr/src/cmd/stat/vmstat/vmstat.c
147
etime = ss->s_sys.ss_ticks / hz;
usr/src/cmd/stat/vmstat/vmstat.c
264
etime = etime >= 1.0 ? (etime / nr_active_cpus(new)) / hz : 1.0;
usr/src/cmd/stat/vmstat/vmstat.c
39
static int hz;
usr/src/cmd/stat/vmstat/vmstat.c
80
hz = sysconf(_SC_CLK_TCK);
usr/src/cmd/su/su.c
156
char *hz;
usr/src/cmd/su/su.c
521
if ((hz = getenv("HZ")) != NULL)
usr/src/cmd/su/su.c
522
(void) strlcat(hzname, hz, sizeof (hzname));
usr/src/cmd/truss/expound.c
329
long hz = sysconf(_SC_CLK_TCK);
usr/src/cmd/truss/expound.c
366
hz);
usr/src/cmd/truss/main.c
2210
int hz = (int)sysconf(_SC_CLK_TCK);
usr/src/cmd/truss/main.c
2212
ticks.tv_sec = lapse / hz;
usr/src/cmd/truss/main.c
2213
ticks.tv_nsec = (lapse % hz) * (1000000000 / hz);
usr/src/common/bzip2/blocksort.c
596
#define mpush(lz,hz,dz) { stackLo[sp] = lz; \
usr/src/common/bzip2/blocksort.c
597
stackHi[sp] = hz; \
usr/src/common/bzip2/blocksort.c
601
#define mpop(lz,hz,dz) { sp--; \
usr/src/common/bzip2/blocksort.c
603
hz = stackHi[sp]; \
usr/src/common/bzip2/blocksort.c
80
#define fpush(lz,hz) { stackLo[sp] = lz; \
usr/src/common/bzip2/blocksort.c
81
stackHi[sp] = hz; \
usr/src/common/bzip2/blocksort.c
84
#define fpop(lz,hz) { sp--; \
usr/src/common/bzip2/blocksort.c
86
hz = stackHi[sp]; }
usr/src/lib/libc/port/aio/aio.c
123
int hz; /* clock ticks per second */
usr/src/lib/libc/port/aio/aio.c
1279
(void) usleep(ticks * (MICROSEC / hz));
usr/src/lib/libc/port/aio/aio.c
169
hz = (int)sysconf(_SC_CLK_TCK);
usr/src/lib/libc/port/gen/waitpid.c
158
clock_t hz;
usr/src/lib/libc/port/gen/waitpid.c
171
hz = CLK_TCK;
usr/src/lib/libc/port/gen/waitpid.c
172
rp->ru_utime.tv_sec = diffu / hz;
usr/src/lib/libc/port/gen/waitpid.c
173
rp->ru_utime.tv_usec = (diffu % hz) * (1000000 / hz);
usr/src/lib/libc/port/gen/waitpid.c
174
rp->ru_stime.tv_sec = diffs / hz;
usr/src/lib/libc/port/gen/waitpid.c
175
rp->ru_stime.tv_usec = (diffs % hz) * (1000000 / hz);
usr/src/lib/libc/sparc/fp/_D_cplx_div.c
109
hz = (ha > hb)? ha : hb;
usr/src/lib/libc/sparc/fp/_D_cplx_div.c
129
if (hz >= 0x7fe00000) {
usr/src/lib/libc/sparc/fp/_D_cplx_div.c
169
if (hz >= 0x7ff00000) { /* z is inf or nan */
usr/src/lib/libc/sparc/fp/_D_cplx_div.c
232
if (hz < 0x07200000) { /* |z| < 2^-909 */
usr/src/lib/libc/sparc/fp/_D_cplx_div.c
91
int ha, hb, hc, hd, hz, hw, hs, i, j;
usr/src/lib/libc/sparc/fp/_Q_cplx_div.c
116
hz = (ha > hb)? ha : hb;
usr/src/lib/libc/sparc/fp/_Q_cplx_div.c
136
if (hz >= 0x7ffe0000) {
usr/src/lib/libc/sparc/fp/_Q_cplx_div.c
159
if (hz >= 0x7fff0000) { /* z is inf or nan */
usr/src/lib/libc/sparc/fp/_Q_cplx_div.c
176
if (hz < 0x00ea0000) { /* |z| < 2^-16149 */
usr/src/lib/libc/sparc/fp/_Q_cplx_div.c
98
int ha, hb, hc, hd, hz, hw, hs, i, j;
usr/src/lib/libfakekernel/common/clock.c
26
int hz = 1000;
usr/src/lib/libfakekernel/common/cond.c
182
ts.tv_sec = delta / hz;
usr/src/lib/libfakekernel/common/cond.c
183
ts.tv_nsec = (delta % hz) * (NANOSEC / hz);
usr/src/lib/libfakekernel/common/taskq.c
118
&tq->tq_lock, ddi_get_lbolt() + hz);
usr/src/lib/libm/common/m9x/fma.c
125
ez = hz >> 20;
usr/src/lib/libm/common/m9x/fma.c
78
int hx, hy, hz, ex, ey, ez, exy, sxy, sz, e, ibit;
usr/src/lib/libm/common/m9x/fma.c
87
hz = zz.i[0] & ~0x80000000;
usr/src/lib/libm/common/m9x/fma.c
94
if (hz >= 0x7ff00000) /* z is inf or nan */
usr/src/lib/libm/common/m9x/fma.c
97
if ((hz | zz.i[1]) == 0) /* z is zero */
usr/src/lib/libm/common/m9x/fmal.c
107
hz = zz.i[0] & ~0x80000000;
usr/src/lib/libm/common/m9x/fmal.c
147
if (hz >= 0x7fff0000) {
usr/src/lib/libm/common/m9x/fmal.c
148
if ((hz & 0xffff) | zz.i[1] | zz.i[2] | zz.i[3]) {
usr/src/lib/libm/common/m9x/fmal.c
149
if (!(hz & 0x8000)) {
usr/src/lib/libm/common/m9x/fmal.c
158
} else if (hz == 0) {
usr/src/lib/libm/common/m9x/fmal.c
449
ez = hz >> 16;
usr/src/lib/libm/common/m9x/fmal.c
450
z0 = hz & 0xffff;
usr/src/lib/libm/common/m9x/fmal.c
97
int hx, hy, hz, ex, ey, ez, exy, sxy, sz, e, ibit;
usr/src/lib/libm/common/m9x/remquo.c
142
hz = hx - hy;
usr/src/lib/libm/common/m9x/remquo.c
145
hz -= 1;
usr/src/lib/libm/common/m9x/remquo.c
146
if (hz < 0) {
usr/src/lib/libm/common/m9x/remquo.c
151
if ((hz | lz) == 0) { /* return sign(x)*0 */
usr/src/lib/libm/common/m9x/remquo.c
160
hx = hz + hz + (lz >> 31);
usr/src/lib/libm/common/m9x/remquo.c
165
hz = hx - hy;
usr/src/lib/libm/common/m9x/remquo.c
168
hz -= 1;
usr/src/lib/libm/common/m9x/remquo.c
169
if (hz >= 0) {
usr/src/lib/libm/common/m9x/remquo.c
170
hx = hz;
usr/src/lib/libm/common/m9x/remquo.c
61
int n, hx, hy, hz, ix, iy, sx, sq, i, m;
usr/src/uts/common/conf/param.c
162
int hz = HZ_DEFAULT;
usr/src/uts/common/conf/param.c
650
hz = hires_hz;
usr/src/uts/common/conf/param.c
652
tick_per_msec = hz / MILLISEC;
usr/src/uts/common/conf/param.c
653
msec_per_tick = MILLISEC / hz;
usr/src/uts/common/conf/param.c
654
usec_per_tick = MICROSEC / hz;
usr/src/uts/common/conf/param.c
655
nsec_per_tick = NANOSEC / hz;
usr/src/uts/common/cpr/cpr_uthread.c
73
#define CPR_UTSTOP_WAIT hz
usr/src/uts/common/disp/fss.c
1342
(void) timeout(fss_update, arg, hz);
usr/src/uts/common/disp/fss.c
1434
if (fssadmin.fss_quantum <= 0 || fssadmin.fss_quantum >= hz)
usr/src/uts/common/disp/fss.c
1757
(void) timeout(fss_update, NULL, hz);
usr/src/uts/common/disp/fss.c
2151
swapout_time = (ddi_get_lbolt() - t->t_stime) / hz;
usr/src/uts/common/disp/fss.c
2199
swapin_time = (ddi_get_lbolt() - t->t_stime) / hz;
usr/src/uts/common/disp/thread.c
940
delay(hz);
usr/src/uts/common/disp/ts.c
1541
swapout_time = (ddi_get_lbolt() - t->t_stime) / hz;
usr/src/uts/common/disp/ts.c
1609
swapin_time = (ddi_get_lbolt() - t->t_stime) / hz;
usr/src/uts/common/disp/ts.c
1825
(void) timeout(ts_update, arg, hz);
usr/src/uts/common/disp/ts.c
652
(void) timeout(ts_update, NULL, hz);
usr/src/uts/common/dtrace/fasttrap.c
376
timeout(&fasttrap_pid_cleanup_cb, NULL, hz);
usr/src/uts/common/fs/autofs/auto_subr.c
2538
autofs_unmount_thread_timer * hz, ZONE_IS_SHUTTING_DOWN);
usr/src/uts/common/fs/autofs/auto_subr.c
383
delay(hz);
usr/src/uts/common/fs/autofs/auto_subr.c
547
delay(hz);
usr/src/uts/common/fs/autofs/auto_subr.c
570
delay(hz);
usr/src/uts/common/fs/dev/sdev_comm.c
331
delay(hz);
usr/src/uts/common/fs/dev/sdev_comm.c
335
delay(2 * hz);
usr/src/uts/common/fs/dev/sdev_comm.c
345
delay(retry * hz);
usr/src/uts/common/fs/fsflush.c
386
autoup = v.v_autoup * hz;
usr/src/uts/common/fs/fsflush.c
464
(ddi_get_lbolt64() / hz) < fsflush_iflush_delay)
usr/src/uts/common/fs/nfs/nfs4_client.c
2705
nfs_write_error_interval * hz;
usr/src/uts/common/fs/nfs/nfs4_db.c
921
delay(hz/100);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
1022
delay(hz);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
471
delay(hz);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
642
delay(hz);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
851
delay(hz);
usr/src/uts/common/fs/nfs/nfs4_recovery.c
1652
delay(hz);
usr/src/uts/common/fs/nfs/nfs4_srv_deleg.c
371
delay(hz);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3085
nfs4_trigger_thread_timer * hz, ZONE_IS_SHUTTING_DOWN);
usr/src/uts/common/fs/nfs/nfs4_subr.c
1207
#define MAXTIMO (20*hz)
usr/src/uts/common/fs/nfs/nfs4_subr.c
1262
timeo = (mi->mi_timeo * hz) / 10;
usr/src/uts/common/fs/nfs/nfs4_subr.c
1320
timeo = (MIN(mi->mi_timeo, SHORTWAIT) * hz) / 10;
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
4006
delay(hz);
usr/src/uts/common/fs/nfs/nfs_auth.c
465
delay(hz);
usr/src/uts/common/fs/nfs/nfs_auth.c
505
delay(hz);
usr/src/uts/common/fs/nfs/nfs_auth.c
527
delay(hz);
usr/src/uts/common/fs/nfs/nfs_auth.c
561
delay(hz);
usr/src/uts/common/fs/nfs/nfs_client.c
2646
nfs_write_error_interval * hz;
usr/src/uts/common/fs/nfs/nfs_cmd.c
150
delay(hz);
usr/src/uts/common/fs/nfs/nfs_cmd.c
170
delay(hz);
usr/src/uts/common/fs/nfs/nfs_cmd.c
188
delay(hz);
usr/src/uts/common/fs/nfs/nfs_cmd.c
222
delay(hz);
usr/src/uts/common/fs/nfs/nfs_common.c
512
(mi->mi_timeo * hz * 2) / 5;
usr/src/uts/common/fs/nfs/nfs_common.c
514
mi->mi_timeo * hz / 10;
usr/src/uts/common/fs/nfs/nfs_dump.c
66
#define TIMEOUT (2 * hz)
usr/src/uts/common/fs/nfs/nfs_subr.c
1083
timeo = (mi->mi_timeo * hz) / 10;
usr/src/uts/common/fs/nfs/nfs_subr.c
1089
(minimum_timeo[mi->mi_call_type[which]]*hz)>>3,
usr/src/uts/common/fs/nfs/nfs_subr.c
1636
timeo = (mi->mi_timeo * hz) / 10;
usr/src/uts/common/fs/nfs/nfs_subr.c
1642
(minimum_timeo[mi->mi_acl_call_type[which]]*hz)>>3,
usr/src/uts/common/fs/nfs/nfs_subr.c
4424
delay(hz);
usr/src/uts/common/fs/nfs/nfs_subr.c
762
#define MAXTIMO (20*hz)
usr/src/uts/common/fs/nfs/nfs_subr.c
767
#define REDUCE_NFS_TIME (hz/2) /* rtxcur we try to keep under */
usr/src/uts/common/fs/nfs/nfs_subr.c
768
#define INCREASE_NFS_TIME (hz/3*8) /* srtt we try to keep under (scaled*8) */
usr/src/uts/common/fs/nfs/nfs_subr.c
865
#define NFS3_JUKEBOX_DELAY 10 * hz
usr/src/uts/common/fs/sockfs/sockstr.c
696
(t_uscalar_t)sizeof (*tca), &mp, sock_capability_timeout * hz))) {
usr/src/uts/common/fs/sockfs/socktpi.c
5501
sock_test_timelimit = 10 * hz;
usr/src/uts/common/fs/tmpfs/tmp_vfsops.c
528
delay(hz / 4);
usr/src/uts/common/fs/ufs/lufs_thread.c
452
trans_roll_tics = 5 * hz;
usr/src/uts/common/fs/ufs/ufs_alloc.c
164
if ((now - ufsvfsp->vfs_lastwhinetime) > (hz << 2) &&
usr/src/uts/common/fs/ufs/ufs_alloc.c
268
if ((now - ufsvfsp->vfs_lastwhinetime) > (hz << 2) &&
usr/src/uts/common/fs/ufs/ufs_inode.c
211
ufs_iowait = v.v_autoup * hz * 2;
usr/src/uts/common/fs/ufs/ufs_lockfs.c
278
if (!cv_reltimedwait_sig(&ulp->ul_cv, &ulp->ul_lock, hz,
usr/src/uts/common/fs/ufs/ufs_panic.c
1090
&ufs_fix.uq_mutex, (hz * retry),
usr/src/uts/common/fs/ufs/ufs_panic.c
1926
(void *)(ufsfx_tune.uft_short_err_period * hz),
usr/src/uts/common/fs/ufs/ufs_panic.c
1927
ufsfx_tune.uft_short_err_period * hz);
usr/src/uts/common/fs/ufs/ufs_panic.c
777
delay(hz >> 1); /* allow previous warnings to get out */
usr/src/uts/common/fs/ufs/ufs_thread.c
1160
&ufs_hlock.uq_mutex, hz, TR_CLOCK_TICK);
usr/src/uts/common/fs/ufs/ufs_vfsops.c
650
#define BOOT_TIME_LIMIT (180*hz)
usr/src/uts/common/fs/vfs.c
4102
delay(hz);
usr/src/uts/common/fs/vfs.c
4110
delay(hz);
usr/src/uts/common/fs/vfs.c
4787
if ((err = delay_sig(hz / 8)) == EINTR)
usr/src/uts/common/fs/zfs/arc.c
1229
#define ARC_MINTIME (hz>>4) /* 62 ms */
usr/src/uts/common/fs/zfs/arc.c
3836
ddi_get_lbolt() - hdr->b_l1hdr.b_arc_access < min_lifetime * hz)) {
usr/src/uts/common/fs/zfs/arc.c
4818
delay((hz * arc_kmem_cache_reap_retry_ms + 999) / 1000);
usr/src/uts/common/fs/zfs/arc.c
7594
interval = (hz * l2arc_feed_min_ms) / 1000;
usr/src/uts/common/fs/zfs/arc.c
7596
interval = hz * l2arc_feed_secs;
usr/src/uts/common/fs/zfs/arc.c
8787
next = ddi_get_lbolt() + hz;
usr/src/uts/common/fs/zfs/arc.c
8821
next = ddi_get_lbolt() + 5 * l2arc_feed_secs * hz;
usr/src/uts/common/fs/zfs/dsl_scan.c
3493
delay(hz);
usr/src/uts/common/fs/zfs/spa.c
2659
error = cv_timedwait_sig(&cv, &mtx, ddi_get_lbolt() + hz);
usr/src/uts/common/fs/zfs/txg.c
484
uint64_t timeout = zfs_txg_timeout * hz;
usr/src/uts/common/fs/zfs/vdev_removal.c
1456
delay(hz);
usr/src/uts/common/fs/zfs/zio_inject.c
478
handler->zi_record.zi_duration * hz >
usr/src/uts/common/idmap/idmap_kapi.c
227
delay(hz);
usr/src/uts/common/idmap/idmap_kapi.c
274
delay(hz);
usr/src/uts/common/idmap/idmap_kapi.c
292
delay(hz);
usr/src/uts/common/inet/cc/cc_cubic.h
111
(C * pow(ticks_since_cong / (double)hz -
usr/src/uts/common/inet/cc/cc_cubic.h
83
extern int hz;
usr/src/uts/common/inet/ip/ip_dce.c
254
ddi_get_lbolt() + ip_dce_reclaim_interval * hz);
usr/src/uts/common/inet/ip/ip_mroute.c
161
#define EXPIRE_TIMEOUT (hz/4) /* 4x / second */
usr/src/uts/common/inet/ip/ip_mroute.c
170
#define TBF_REPROCESS (hz / 100) /* 100x /second */
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
1111
int hz = drv_usectohz(500000);
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
1115
hz);
usr/src/uts/common/inet/ipf/ip_frag.c
901
callout_reset(&fr_slowtimer_ch, hz / 2, fr_slowtimer, NULL);
usr/src/uts/common/inet/ipf/ip_frag.c
904
timeout_add(&fr_slowtimer_ch, hz/2);
usr/src/uts/common/inet/ipf/ip_frag.c
907
fr_slowtimer_ch = timeout(fr_slowtimer, NULL, hz/2);
usr/src/uts/common/inet/ipf/ip_frag.c
912
timeout(fr_slowtimer, NULL, hz/2);
usr/src/uts/common/inet/sctp/sctp.c
373
connp->conn_lingertime * hz;
usr/src/uts/common/inet/tcp/tcp_input.c
71
#define PAWS_TIMEOUT ((clock_t)(24*24*60*60*hz))
usr/src/uts/common/io/aggr/aggr_grp.c
3254
delay(2 * hz);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
406
delay(hz);
usr/src/uts/common/io/cxgbe/common/common.h
739
int hz, int ticks);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
11242
int hz, int ticks)
usr/src/uts/common/io/cxgbe/common/t4_hw.c
11267
if (idma->idma_stalled[i] >= SGE_IDMA_WARN_THRESH*hz)
usr/src/uts/common/io/cxgbe/common/t4_hw.c
11271
idma->idma_stalled[i]/hz);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
11286
idma->idma_stalled[i] = hz;
usr/src/uts/common/io/cxgbe/common/t4_hw.c
11293
if (idma->idma_stalled[i] < SGE_IDMA_WARN_THRESH*hz)
usr/src/uts/common/io/cxgbe/common/t4_hw.c
11300
idma->idma_warn[i] = SGE_IDMA_WARN_REPEAT*hz;
usr/src/uts/common/io/cxgbe/common/t4_hw.c
11317
idma->idma_stalled[i]/hz,
usr/src/uts/common/io/dls/dls_mgmt.c
432
delay(2 * hz);
usr/src/uts/common/io/kbtrans/kbtrans_streams.c
250
kbtrans_repeat_rate = (hz + 29) / 30;
usr/src/uts/common/io/kbtrans/kbtrans_streams.c
251
kbtrans_repeat_delay = hz / 2;
usr/src/uts/common/io/ldterm.c
4986
(clock_t)(V_TIME * (hz / 10)));
usr/src/uts/common/io/net80211/net80211_ht.c
76
#define IEEE80211_AGGR_MINRETRY (10 * hz) /* ticks */
usr/src/uts/common/io/net80211/net80211_node.c
827
if (in->in_rxfrag != NULL && ticks > (in->in_rxfragstamp + hz)) {
usr/src/uts/common/io/pm.c
696
PM_IDLEDOWN_TIME * hz);
usr/src/uts/common/io/power.c
700
100 * hz);
usr/src/uts/common/io/rlmod.c
123
#define SIMWAIT (1*hz)
usr/src/uts/common/io/rtw/rtwvar.h
398
#define RTW_LED_SLOW_TICKS MAX(1, hz/2)
usr/src/uts/common/io/rtw/rtwvar.h
399
#define RTW_LED_FAST_TICKS MAX(1, hz/10)
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
545
sdhost_set_clock(sdslot_t *ss, uint32_t hz)
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
557
if (hz == 0) {
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
567
if ((hz > 25000000) && ((ss->ss_capab & CAPAB_HIGH_SPEED) != 0)) {
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
572
hz = min(hz, 25000000);
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
579
while (clk > hz) {
usr/src/uts/common/io/sdcard/impl/sda_init.c
398
sda_init_clock(sda_slot_t *slot, uint32_t hz)
usr/src/uts/common/io/sdcard/impl/sda_init.c
410
if ((rv = sda_setprop(slot, SDA_PROP_CLOCK, hz)) != SDA_EOK) {
usr/src/uts/common/io/sdcard/impl/sda_init.c
412
hz, rv);
usr/src/uts/common/io/sdcard/impl/sda_init.c
420
"Clock frequency unknown (good luck).", act, hz);
usr/src/uts/common/io/softmac/softmac_pkt.c
91
#define ACKTIMEOUT (10 * hz)
usr/src/uts/common/io/telmod.c
64
#define SIMWAIT (1*hz)
usr/src/uts/common/io/timod.c
1816
tim_tcap_timer, q, tim_tcap_wait * hz);
usr/src/uts/common/io/timod.c
225
#define TIMWAIT (1*hz)
usr/src/uts/common/io/timod.c
227
#define TIMIOCWAIT (200*hz/1000)
usr/src/uts/common/io/usb/clients/usbms/usbms.c
198
extern int hz;
usr/src/uts/common/ktli/t_kopen.c
126
(void) delay(hz);
usr/src/uts/common/ktli/t_kopen.c
197
(void) delay(hz);
usr/src/uts/common/nfs/nfs4.h
1006
#define NFS4_DELEGATION_CONFLICT_DELAY (hz/10)
usr/src/uts/common/nfs/nfs_clnt.h
629
#define NFS_ASYNC_TIMEOUT (60 * 1 * hz) /* 1 minute */
usr/src/uts/common/os/bio.c
1855
(void) cv_reltimedwait(&bio_mem_cv, &bfree_lock, hz, TR_CLOCK_TICK);
usr/src/uts/common/os/callb.c
296
cp->cc_lockp, (callb_timeout_sec * hz),
usr/src/uts/common/os/clock.c
1545
ticks = (pp->p_utime + pp->p_stime) % hz;
usr/src/uts/common/os/clock.c
1610
if ((ticks + pending) >= hz) {
usr/src/uts/common/os/clock.c
1612
(pp->p_utime + pp->p_stime)/hz, RCA_UNSAFE_SIGINFO);
usr/src/uts/common/os/clock.c
474
if (lgrp_ticks++ >= hz / 10) {
usr/src/uts/common/os/clock.c
733
time_adj = -(lltemp * SCALE_PHASE) / hz / SCALE_UPDATE;
usr/src/uts/common/os/clock.c
747
time_adj = (lltemp * SCALE_PHASE) / hz / SCALE_UPDATE;
usr/src/uts/common/os/clock.c
767
time_adj += (lltemp * SCALE_PHASE) / (SCALE_USEC * hz);
usr/src/uts/common/os/clock.c
988
if (hz != HZ_DEFAULT)
usr/src/uts/common/os/clock.c
990
hz/HZ_DEFAULT;
usr/src/uts/common/os/cpu.c
1410
delay(hz/100);
usr/src/uts/common/os/dumpsubr.c
3035
delay(2 * hz); /* let people see the 'done' message */
usr/src/uts/common/os/kmem.c
4383
kmem_reap_interval = 15 * hz;
usr/src/uts/common/os/logsubr.c
369
hlc->ttime = lc->ttime - (lc->ltime - hlc->ltime) / hz;
usr/src/uts/common/os/logsubr.c
380
(ddi_get_lbolt() - hlc->ltime) / hz;
usr/src/uts/common/os/mem_config.c
1587
#define DEL_FREE_WAIT_TICKS ((hz+DEL_FREE_WAIT_FRAC-1)/DEL_FREE_WAIT_FRAC)
usr/src/uts/common/os/mem_config.c
1590
#define DEL_BUSY_WAIT_TICKS ((hz+DEL_BUSY_WAIT_FRAC-1)/DEL_BUSY_WAIT_FRAC)
usr/src/uts/common/os/mem_config.c
2918
extern int hz;
usr/src/uts/common/os/mem_config.c
2958
tmp = mhp->mh_delstat.nticks_total / hz; /* seconds */
usr/src/uts/common/os/mem_config.c
2963
tmp = mhp->mh_delstat.nticks_pgrp / hz; /* seconds */
usr/src/uts/common/os/sched.c
339
swapout_time = (ddi_get_lbolt() - swapin_proc_time) / hz;
usr/src/uts/common/os/softint.c
198
softcall_delay = softcall_delay * (hz/100);
usr/src/uts/common/os/softint.c
359
if (now - softcall_lastpoke < hz) {
usr/src/uts/common/os/softint.c
370
if (now - softcall_countstart <= hz)
usr/src/uts/common/os/subr.c
391
delay(hz / 50);
usr/src/uts/common/os/sunpm.c
1020
(PM_MIN_SCAN(dip) * hz)));
usr/src/uts/common/os/sunpm.c
1093
if (nextscan > (LONG_MAX / hz))
usr/src/uts/common/os/sunpm.c
1094
nextscan = (LONG_MAX - 1) / hz;
usr/src/uts/common/os/sunpm.c
1103
(clock_t)(nextscan * hz));
usr/src/uts/common/os/sunpm.c
471
extern int hz;
usr/src/uts/common/os/sunpm.c
6648
*intervalp = (LONG_MAX / hz);
usr/src/uts/common/os/sunpm.c
6753
*intervalp = (LONG_MAX / hz);
usr/src/uts/common/os/sunpm.c
6771
if (*intervalp > (LONG_MAX / hz))
usr/src/uts/common/os/sunpm.c
6772
*intervalp = (LONG_MAX / hz);
usr/src/uts/common/os/sunpm.c
6783
*intervalp = (LONG_MAX / hz);
usr/src/uts/common/os/task.c
299
if (t->tk_cpu_ticks >= hz) {
usr/src/uts/common/os/task.c
300
t->tk_cpu_time += t->tk_cpu_ticks / hz;
usr/src/uts/common/os/task.c
301
t->tk_cpu_ticks = t->tk_cpu_ticks % hz;
usr/src/uts/common/os/taskq.c
1117
wait_time = ddi_get_lbolt() + hz;
usr/src/uts/common/os/timers.c
929
else if (sec > (LONG_MAX - ticks) / hz)
usr/src/uts/common/os/timers.c
932
ticks += sec * hz; /* common case */
usr/src/uts/common/os/timers.c
969
else if (sec > (((~0ULL) >> 1) - ticks) / hz)
usr/src/uts/common/os/timers.c
972
ticks += sec * hz; /* common case */
usr/src/uts/common/os/vm_pageout.c
941
(void) timeout(schedpaging, arg, hz / SCHEDPAGING_HZ);
usr/src/uts/common/os/vmem.c
1743
(void) timeout(vmem_update, dummy, vmem_update_interval * hz);
usr/src/uts/common/os/zone.c
4876
ddi_get_lbolt() + hz, ZONE_IS_EMPTY)) == -1) {
usr/src/uts/common/os/zone.c
6707
delay(hz);
usr/src/uts/common/rpc/clnt_clts.c
1712
delay(hz << i++);
usr/src/uts/common/rpc/clnt_clts.c
2320
(clnt_clts_endpoint_reap_interval + DEFAULT_INTERVAL_SHIFT) * hz;
usr/src/uts/common/rpc/clnt_clts.c
450
#define MAXTIMO (20 * hz)
usr/src/uts/common/rpc/clnt_clts.c
975
(void) delay(hz/10);
usr/src/uts/common/rpc/rpcmod.c
2229
printf("mir_timer[%d]: doing client timeout\n", now / hz);
usr/src/uts/common/rpc/svc.c
621
pool->p_timeout = timeout * hz;
usr/src/uts/common/rpc/xdr_mblk.c
170
delay(hz);
usr/src/uts/common/sys/cpudrv.h
147
#define CPUDRV_QUANT_CNT_NORMAL (hz * 1) /* 1 sec */
usr/src/uts/common/sys/cpudrv.h
149
#define CPUDRV_QUANT_CNT_NORMAL (hz * 5) /* 5 sec */
usr/src/uts/common/sys/cpudrv.h
151
#define CPUDRV_QUANT_CNT_OTHR (hz * 1) /* 1 sec */
usr/src/uts/common/sys/mac_flow_impl.h
128
#define FLOW_BYTES_PER_TICK(bps) (((bps) >> 3) / hz)
usr/src/uts/common/sys/param.h
373
extern int hz;
usr/src/uts/common/sys/scsi/targets/stdef.h
1294
#define ST_STATUS_BUSY_TIMEOUT 10*hz /* seconds Busy Waiting */
usr/src/uts/common/sys/scsi/targets/stdef.h
1295
#define ST_TRAN_BUSY_TIMEOUT 4*hz /* seconds retry on TRAN_BSY */
usr/src/uts/common/sys/ser_sync.h
249
extern int hz;
usr/src/uts/common/sys/ser_sync.h
250
#define SIO_WATCHDOG_TICK (2 * hz) /* Two second timeout */
usr/src/uts/common/sys/socketvar.h
658
#define SNFQ_TIMEOUT (60 * 5 * hz) /* 5 minutes */
usr/src/uts/common/sys/systm.h
71
extern int hz; /* system clock rate */
usr/src/uts/common/sys/time.h
281
#define TICK_TO_SEC(tick) ((tick) / hz)
usr/src/uts/common/sys/time.h
282
#define SEC_TO_TICK(sec) ((sec) * hz)
usr/src/uts/common/sys/usb/clients/usbms/usbms.h
245
#define JITTER_TIMEOUT (hz/JITTERRATE)
usr/src/uts/common/syscall/alarm.c
80
ret = (del + hz - 1) / hz; /* convert to seconds */
usr/src/uts/common/syscall/alarm.c
89
if (delta > (LONG_MAX / hz) || delta < 0)
usr/src/uts/common/syscall/alarm.c
90
delta = LONG_MAX / hz;
usr/src/uts/common/syscall/alarm.c
93
p->p_alarmid = realtime_timeout(sigalarm2proc, p, delta * hz);
usr/src/uts/common/syscall/sysconfig.c
67
return ((long)hz); /* clock frequency per second */
usr/src/uts/common/syscall/sysconfig.c
70
return ((long)hz); /* profiling clock freq per sec */
usr/src/uts/common/syscall/uadmin.c
119
&pidlock, hz, TR_CLOCK_TICK);
usr/src/uts/common/vm/seg_map.c
1269
delay(hz >> 2);
usr/src/uts/common/vm/seg_spt.c
3050
end_lbolt = ddi_get_lbolt() + (hz * spt_pcache_wait);
usr/src/uts/common/vm/seg_vn.c
10157
segvn_update_textrepl_interval = segvn_update_tr_time * hz;
usr/src/uts/common/vm/seg_vn.c
10159
segvn_update_textrepl_interval *= hz;
usr/src/uts/common/vm/vm_page.c
3955
delay(hz >> 2);
usr/src/uts/common/vm/vm_page.c
5762
delay(hz);
usr/src/uts/common/vm/vm_page.c
7146
pc_thread_shortwait = 23 * hz;
usr/src/uts/common/vm/vm_page.c
7147
pc_thread_longwait = 1201 * hz;
usr/src/uts/common/vm/vm_seg.c
1390
segpcache_pcp_maxage_ticks = segpcache_pcp_maxage_sec * hz;
usr/src/uts/common/vm/vm_seg.c
1540
segpcache_reap_ticks = segpcache_reap_sec * hz;
usr/src/uts/common/vm/vm_seg.c
1746
delay(hz/SEGP_PREDEL_DELAY_FACTOR);
usr/src/uts/common/vm/vpm.c
434
delay(hz >> 2);
usr/src/uts/common/xen/io/xdf.c
251
timeout(xdf_timeout_handler, vdp, hz);
usr/src/uts/common/xen/io/xdf.c
306
timeout(xdf_timeout_handler, vdp, hz);
usr/src/uts/i86pc/io/cbe.c
307
if ((cbe_ticks % hz) == 0)
usr/src/uts/i86pc/io/dr/dr_quiesce.c
538
#define DR_UTSTOP_WAIT hz
usr/src/uts/i86pc/io/dr/dr_quiesce.c
709
delay(hz);
usr/src/uts/i86pc/io/psm/uppc.c
265
ulong_t clkticks = PIT_HZ / hz;
usr/src/uts/i86pc/io/psm/uppc.c
310
(void) uppc_clkinit(hz);
usr/src/uts/i86pc/os/memscrub.c
330
(void) timeout(memscrub_wakeup, NULL, interval_sec * hz);
usr/src/uts/i86pc/os/mp_machdep.c
1436
resolution = (*pops->psm_clkinit)(hz);
usr/src/uts/i86pc/os/mp_machdep.c
1448
(void) (*pops->psm_clkinit)(hz);
usr/src/uts/i86xpv/os/balloon.c
679
(bln_wait * hz), TR_CLOCK_TICK);
usr/src/uts/intel/io/ipmi/ipmivars.h
188
#define MAX_TIMEOUT (3 * hz)
usr/src/uts/intel/io/vmm/io/vatpit.c
84
#define TIMER_DIV(freq, hz) (((freq) + (hz) / 2) / (hz))
usr/src/uts/intel/io/vmm/vmm_reservoir.c
698
if (delay_sig(hz >> 2) != 0) {
usr/src/uts/sun/io/ms.c
179
#define JITTER_TIMEOUT (hz/msjitterrate)
usr/src/uts/sun/io/zs_async.c
142
#define ztdelay(nsp) (zsdelay[(nsp)]*(hz/100))
usr/src/uts/sun/io/zs_async.c
2439
timeout(zsa_restart, zs, hz/4);
usr/src/uts/sun/io/zs_async.c
2841
timeout(zsa_restart, zs, hz / 4);
usr/src/uts/sun4/io/efcode/fc_subr.c
195
fp->timeout = timeout(fcode_timer, fp, hz * fcode_timeout);
usr/src/uts/sun4/io/efcode/fc_subr.c
67
extern int hz;
usr/src/uts/sun4/io/su_driver.c
2579
(void) timeout(async_restart, async, hz / 4);
usr/src/uts/sun4/io/su_driver.c
3074
(void) timeout(async_restart, async, hz / 4);
usr/src/uts/sun4/os/startup.c
2376
(void) timeout(ptl1_wakeup, NULL, hz);
usr/src/uts/sun4u/cpu/spitfire.c
3674
if (ecache_calls_a_sec > hz)
usr/src/uts/sun4u/cpu/spitfire.c
3675
ecache_calls_a_sec = hz;
usr/src/uts/sun4u/cpu/spitfire.c
3679
if (ecache_calls_a_sec_mirrored > hz)
usr/src/uts/sun4u/cpu/spitfire.c
3680
ecache_calls_a_sec_mirrored = hz;
usr/src/uts/sun4u/cpu/spitfire.c
3686
delta = hz / ec_timeout_calls;
usr/src/uts/sun4u/cpu/spitfire.c
3688
delta = hz;
usr/src/uts/sun4u/cpu/spitfire.c
3703
if (ecache_calls_a_sec > hz) {
usr/src/uts/sun4u/cpu/spitfire.c
3705
"resetting to hz (%d)", ecache_calls_a_sec, hz);
usr/src/uts/sun4u/cpu/spitfire.c
3706
ecache_calls_a_sec = hz;
usr/src/uts/sun4u/cpu/spitfire.c
3719
hz / ecache_calls_a_sec);
usr/src/uts/sun4u/cpu/us3_common.c
5747
if (csi->csi_freq > hz) {
usr/src/uts/sun4u/cpu/us3_common.c
5750
csi->csi_freq, hz);
usr/src/uts/sun4u/cpu/us3_common.c
5751
csi->csi_freq = hz;
usr/src/uts/sun4u/io/pci/pcipsy.c
672
thermal_powerdown_delay * hz);
usr/src/uts/sun4u/io/sysioerr.c
909
thermal_powerdown_delay * hz);
usr/src/uts/sun4u/io/todds1287.c
809
100 * hz);
usr/src/uts/sun4u/ngdr/io/dr_mem.c
421
PR_MEM("%s: scrub ticks = %ld (%ld secs)\n", f, stime, stime / hz);
usr/src/uts/sun4u/ngdr/io/dr_mem.c
533
f, copytime, copytime / hz);
usr/src/uts/sun4u/ngdr/io/dr_quiesce.c
539
#define DR_UTSTOP_WAIT hz
usr/src/uts/sun4u/ngdr/io/dr_quiesce.c
710
delay(hz);
usr/src/uts/sun4u/opl/io/dr_mem.c
545
f, copytime, copytime / hz);
usr/src/uts/sun4u/os/memscrub.c
444
period_ticks = memscrub_period_sec * hz;
usr/src/uts/sun4u/os/memscrub.c
503
interval_ticks = hz;
usr/src/uts/sun4u/os/memscrub.c
542
interval_ticks = (deadline - now) * hz;
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
520
copytime, copytime / hz);
usr/src/uts/sun4u/serengeti/io/sbdp_quiesce.c
518
#define SBDP_UTSTOP_WAIT hz
usr/src/uts/sun4u/serengeti/io/sbdp_quiesce.c
676
delay(hz);
usr/src/uts/sun4u/sunfire/io/ac_del.c
180
dsp->to_id = timeout(del_to_scan, arg, hz);
usr/src/uts/sun4u/sunfire/io/ac_del.c
192
dsp->to_id = timeout(del_to_scan, dsp, hz);
usr/src/uts/sun4u/sunfire/io/environ.c
447
(void) timeout(overtemp_wakeup, NULL, overtemp_timeout_sec*hz);
usr/src/uts/sun4u/sunfire/io/sysctrl_quiesce.c
336
#define SYSCTRL_UTSTOP_WAIT hz
usr/src/uts/sun4u/sunfire/io/sysctrl_quiesce.c
546
delay(hz);
usr/src/uts/sun4v/io/drctl_impl.c
133
delay(hz);
usr/src/uts/sun4v/io/vsw_ldc.c
978
&ldcp->drain_cv_lock, ddi_get_lbolt() + hz);
usr/src/uts/sun4v/os/error.c
771
(void) timeout((void(*)(void *))power_down, NULL, 100 * hz);
usr/src/uts/sun4v/promif/promif_prop.c
216
PROMIF_DS_TIMEOUT_SEC * hz, TR_CLOCK_TICK) == -1) {