/illumos-gate/usr/src/lib/libm/common/m9x/ |
H A D | remquo.c | 61 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 D | fma.c | 78 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/lib/libc/port/gen/ |
H A D | waitpid.c | 158 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/cmd/dtrace/test/tst/common/buffering/ |
H A D | tst.alignring.d | 40 profile:::profile-1009hz 45 profile:::profile-1237hz 59 profile:::profile-1789hz 69 profile-1543hz 72 profile-1361hz
|
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | alarm.c | 80 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 D | sysconfig.c | 67 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 D | printgprof.c | 149 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() 188 1000 * (np->time + np->childtime) / hz / np->ncall); in flatprofline() 219 100.0/printtime, printtime / hz); in gprofheader() 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() [all …]
|
/illumos-gate/usr/src/lib/libc/sparc/fp/ |
H A D | _Q_cplx_div.c | 98 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.c | 91 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 D | timex.c | 48 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/conf/ |
H A D | param.c | 163 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/uts/common/sys/ |
H A D | cpudrv.h | 147 #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 D | ser_sync.h | 249 extern int hz; 250 #define SIO_WATCHDOG_TICK (2 * hz) /* Two second timeout */
|
/illumos-gate/usr/src/cmd/stat/mpstat/ |
H A D | mpstat.c | 58 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 D | cond.c | 182 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 D | softint.c | 198 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 D | cc_cubic.h | 83 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 D | nfs_cmd.c | 150 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 D | sdev_comm.c | 331 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 D | sda_init.c | 398 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 D | tst.profilehz.d | 39 profile-100hz
|
H A D | tst.profilehz.d.out | 1 This test is a simple profile-hz provider test
|
H A D | tst.profilenhz.d.out | 1 This test is a simple profile implicit hz test
|
/illumos-gate/usr/src/uts/common/ktli/ |
H A D | t_kopen.c | 126 (void) delay(hz); in t_kopen() 197 (void) delay(hz); in t_kopen()
|
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/safety/ |
H A D | tst.errno.d | 38 profile-4999hz
|