Home
last modified time | relevance | path

Searched refs:hz (Results 1 – 25 of 232) sorted by relevance

12345678910

/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dremquo.c61 int n, hx, hy, hz, ix, iy, sx, sq, i, m; in fmodquo() local
142 hz = hx - hy; in fmodquo()
145 hz -= 1; in fmodquo()
146 if (hz < 0) { in fmodquo()
151 if ((hz | lz) == 0) { /* return sign(x)*0 */ in fmodquo()
160 hx = hz + hz + (lz >> 31); in fmodquo()
165 hz = hx - hy; in fmodquo()
168 hz -= 1; in fmodquo()
169 if (hz >= 0) { in fmodquo()
170 hx = hz; in fmodquo()
H A Dfma.c78 int hx, hy, hz, ex, ey, ez, exy, sxy, sz, e, ibit; in __fma() local
87 hz = zz.i[0] & ~0x80000000; in __fma()
94 if (hz >= 0x7ff00000) /* z is inf or nan */ in __fma()
97 if ((hz | zz.i[1]) == 0) /* z is zero */ in __fma()
125 ez = hz >> 20; in __fma()
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/buffering/
H A Dtst.alignring.d40 profile:::profile-1009hz
45 profile:::profile-1237hz
59 profile:::profile-1789hz
69 profile-1543hz
72 profile-1361hz
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dwaitpid.c158 clock_t hz; in wait4() local
171 hz = CLK_TCK; in wait4()
172 rp->ru_utime.tv_sec = diffu / hz; in wait4()
173 rp->ru_utime.tv_usec = (diffu % hz) * (1000000 / hz); in wait4()
174 rp->ru_stime.tv_sec = diffs / hz; in wait4()
175 rp->ru_stime.tv_usec = (diffs % hz) * (1000000 / hz); in wait4()
/illumos-gate/usr/src/uts/common/syscall/
H A Dalarm.c80 ret = (del + hz - 1) / hz; /* convert to seconds */ in alarm()
89 if (delta > (LONG_MAX / hz) || delta < 0) in alarm()
90 delta = LONG_MAX / hz; in alarm()
93 p->p_alarmid = realtime_timeout(sigalarm2proc, p, delta * hz); in alarm()
H A Dsysconfig.c67 return ((long)hz); /* clock frequency per second */ in sysconfig()
70 return ((long)hz); /* profiling clock freq per sec */ in sysconfig()
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dprintgprof.c149 100.0/totime, totime / hz); in flatprofheader()
183 100 * np->time / totime, actime / hz, np->time / hz); in flatprofline()
187 1000 * np->time / hz / np->ncall, in flatprofline()
231 if (hz != 1) { in gprofheader()
233 (double)1.0 / hz); in gprofheader()
256 np->propself / hz, np->propchild / hz); in gprofline()
434 "", arcp->arc_time / hz, arcp->arc_childtime / hz, in printparents()
477 arcp->arc_time / hz, in printchildren()
483 "", "", arcp->arc_time / hz, in printchildren()
644 cyclep -> propself / hz, cyclep -> propchild / hz, in printcycle()
[all …]
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_Q_cplx_div.c98 int ha, hb, hc, hd, hz, hw, hs, i, j; local
116 hz = (ha > hb)? ha : hb;
136 if (hz >= 0x7ffe0000) {
159 if (hz >= 0x7fff0000) { /* z is inf or nan */
176 if (hz < 0x00ea0000) { /* |z| < 2^-16149 */
H A D_D_cplx_div.c91 int ha, hb, hc, hd, hz, hw, hs, i, j; in _D_cplx_div() local
109 hz = (ha > hb)? ha : hb; in _D_cplx_div()
129 if (hz >= 0x7fe00000) { in _D_cplx_div()
169 if (hz >= 0x7ff00000) { /* z is inf or nan */ in _D_cplx_div()
232 if (hz < 0x07200000) { /* |z| < 2^-909 */ in _D_cplx_div()
/illumos-gate/usr/src/cmd/sa/
H A Dtimex.c48 static int hz; variable
77 hz = sysconf(_SC_CLK_TCK); in main()
78 nsec_per_tick = NANOSEC / hz; in main()
215 tk = total % hz; /* ticks % hz */ in printt()
216 total /= hz; in printt()
254 (void) fprintf(stderr, "%02ld\n", tk * 100/hz); in printt()
/illumos-gate/usr/src/uts/common/sys/
H A Dcpudrv.h147 #define CPUDRV_QUANT_CNT_NORMAL (hz * 1) /* 1 sec */
149 #define CPUDRV_QUANT_CNT_NORMAL (hz * 5) /* 5 sec */
151 #define CPUDRV_QUANT_CNT_OTHR (hz * 1) /* 1 sec */
H A Dser_sync.h249 extern int hz;
250 #define SIO_WATCHDOG_TICK (2 * hz) /* Two second timeout */
/illumos-gate/usr/src/uts/common/conf/
H A Dparam.c163 int hz = HZ_DEFAULT; variable
651 hz = hires_hz; in param_init()
653 tick_per_msec = hz / MILLISEC; in param_init()
654 msec_per_tick = MILLISEC / hz; in param_init()
655 usec_per_tick = MICROSEC / hz; in param_init()
656 nsec_per_tick = NANOSEC / hz; in param_init()
/illumos-gate/usr/src/cmd/stat/mpstat/
H A Dmpstat.c58 static int hz; variable
142 hz = sysconf(_SC_CLK_TCK); in main()
247 etime = (double)ticks / hz; in print_cpu()
250 percent = 100.0 / etime / hz; in print_cpu()
433 etime = (double)ticks / hz; in print_pset()
436 percent = 100.0 / p2->ps_nr_cpus / etime / hz; in print_pset()
/illumos-gate/usr/src/lib/libfakekernel/common/
H A Dcond.c182 ts.tv_sec = delta / hz; in cv__twait()
183 ts.tv_nsec = (delta % hz) * (NANOSEC / hz); in cv__twait()
/illumos-gate/usr/src/uts/common/os/
H A Dsoftint.c198 softcall_delay = softcall_delay * (hz/100); in softcall_init()
359 if (now - softcall_lastpoke < hz) { in softcall()
370 if (now - softcall_countstart <= hz) in softcall()
/illumos-gate/usr/src/uts/common/inet/cc/
H A Dcc_cubic.h83 extern int hz;
111 (C * pow(ticks_since_cong / (double)hz - in theoretical_cubic_cwnd()
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_cmd.c150 delay(hz); in nfscmd_send()
170 delay(hz); in nfscmd_send()
188 delay(hz); in nfscmd_send()
222 delay(hz); in nfscmd_send()
/illumos-gate/usr/src/uts/common/fs/dev/
H A Dsdev_comm.c331 delay(hz); in sdev_ki_call_devfsadmd()
335 delay(2 * hz); in sdev_ki_call_devfsadmd()
345 delay(retry * hz); in sdev_ki_call_devfsadmd()
/illumos-gate/usr/src/uts/common/io/sdcard/impl/
H A Dsda_init.c398 sda_init_clock(sda_slot_t *slot, uint32_t hz) in sda_init_clock() argument
410 if ((rv = sda_setprop(slot, SDA_PROP_CLOCK, hz)) != SDA_EOK) { in sda_init_clock()
412 hz, rv); in sda_init_clock()
420 "Clock frequency unknown (good luck).", act, hz); in sda_init_clock()
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/profile-n/
H A Dtst.profilehz.d39 profile-100hz
H A Dtst.profilehz.d.out1 This test is a simple profile-hz provider test
H A Dtst.profilenhz.d.out1 This test is a simple profile implicit hz test
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/safety/
H A Dtst.zonename.d38 profile-4999hz
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/sched/
H A Dtst.stackdepth.d27 #pragma D option switchrate=100hz

12345678910