Searched refs:hz (Results 1 - 25 of 854) sorted by relevance

1234567891011>>

/netbsd-current/sys/arch/sun68k/stand/libsa/
H A Dclock.c10 int hz = 1000; variable
18 return ((ticks / hz));
/netbsd-current/sys/external/bsd/drm2/include/asm/
H A Dparam.h39 #define HZ hz
/netbsd-current/sys/arch/news68k/news68k/
H A Dclock.c80 if (1000000 % hz) {
81 printf("cannot get %d Hz clock; using 100 Hz\n", hz);
82 hz = 100;
83 tick = 1000000 / hz;
93 * profhz == stathz == hz.
/netbsd-current/sys/arch/mac68k/mac68k/
H A Dclockreg.h47 #define CLK_INTERVAL ((unsigned int)(CLK_FREQ / hz))
/netbsd-current/lib/libm/src/
H A De_fmodf.c35 int32_t n,hx,hy,hz,ix,iy,sx,i; local
78 hz=hx-hy;
79 if(hz<0){hx = hx+hx;}
81 if(hz==0) /* return sign(x)*0 */
83 hx = hz+hz;
86 hz=hx-hy;
87 if(hz>=0) {hx=hz;}
H A De_fmod.c36 int32_t n,hx,hy,hz,ix,iy,sx,i; local
102 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
103 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;}
105 if((hz|lz)==0) /* return sign(x)*0 */
107 hx = hz+hz+(lz>>31); lx = lz+lz;
110 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
111 if(hz>
[all...]
H A De_fmodl.c77 int64_t hx,hz; /* We need a carry bit even if EXT_FRACHBITS is 32. */ local
128 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
129 if(hz<0){hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx;}
131 if ((hz|lz)==0) /* return sign(x)*0 */
133 hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz;
136 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
137 if(hz>
[all...]
/netbsd-current/lib/libc/gen/
H A Dclock.c62 clock_t hz = CLOCKS_PER_SEC; local
66 return (clock_t)((ru.ru_utime.tv_sec + ru.ru_stime.tv_sec) * hz +
68 / 100 * hz / 10000);
/netbsd-current/sys/arch/hpcmips/hpcmips/
H A Dclock.c75 #include <sys/kernel.h> /* hz */
110 hz = clock->hz;
111 tick = 1000000 / hz;
/netbsd-current/external/cddl/dtracetoolkit/dist/Bin/
H A Dwoof.d34 #pragma D option switchrate=10hz
60 profile:::tick-10hz
H A Dpriclass.d63 profile:::profile-1000hz
H A Ddispqlen.d43 profile:::profile-1000hz
H A Dpridist.d58 profile:::profile-1000hz
H A Drunocc.d44 profile-1000hz
/netbsd-current/external/cddl/dtracetoolkit/dist/Misc/
H A Dwoof.d34 #pragma D option switchrate=10hz
60 profile:::tick-10hz
/netbsd-current/lib/libm/ld80/
H A Dk_cosl.c69 long double hz,z,r,w; local
73 hz = 0.5*z;
74 w = one-hz;
75 return w + (((one-w)-hz) + (z*r-x*y));
/netbsd-current/sys/arch/luna68k/luna68k/
H A Dclock.c73 hz = 60; /* LUNA-I is clocked at 60Hz, not 100Hz */
75 tick = 1000000 / hz; /* number of microseconds between interrupts */
/netbsd-current/external/cddl/dtracetoolkit/dist/Kernel/
H A Dpriclass.d63 profile:::profile-1000hz
H A Dpridist.d58 profile:::profile-1000hz
/netbsd-current/sys/arch/mvme68k/mvme68k/
H A Dclock.c108 if (1000000 % hz) {
109 printf("cannot get %d Hz clock; using 100 Hz\n", hz);
110 hz = 100;
111 tick = 1000000 / hz;
114 stathz = hz;
/netbsd-current/sys/dev/ppbus/
H A Dlptvar.h49 #define LPT_TIMEOUT ((hz)*16)
50 #define LPT_STEP ((hz)/4)
75 #define MAX_SLEEP (hz*5) /* Timeout while waiting for device ready */
/netbsd-current/sys/arch/ia64/ia64/
H A Dclock.c74 * to implement a 1000hz clock.
91 stathz = hz;
92 ia64_clock_reload = (itc_frequency + hz / 2) / hz;
/netbsd-current/external/cddl/dtracetoolkit/dist/Cpu/
H A Ddispqlen.d43 profile:::profile-1000hz
H A Drunocc.d44 profile-1000hz
/netbsd-current/sys/external/bsd/drm2/include/linux/
H A Ddelay.h70 ((hz < 1000) && (msec < (1000/(unsigned)hz))))

Completed in 164 milliseconds

1234567891011>>