HomeSort by: relevance | last modified time | path
    Searched refs:hz (Results 1 - 25 of 799) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/sun68k/stand/libsa/
clock.c 10 int hz = 1000; variable
18 return ((ticks / hz));
libsa.h 30 extern int hz;
  /src/sys/arch/arm/dts/
sun8i-h3-orangepi-plus2e.dts 33 opp-hz = /bits/ 64 <1200000000>;
39 opp-hz = /bits/ 64 <1296000000>;
  /src/sys/external/bsd/drm2/include/asm/
param.h 39 #define HZ hz
  /src/sys/arch/mac68k/mac68k/
clockreg.h 38 * The Macintosh 6522 VIAs are provided with a 783360 Hz E clock that
44 #define CLK_FREQ 783360 /* VIA clock frequency (Hz) */
46 /* Clock needed to hit HZ ticks/sec. */
47 #define CLK_INTERVAL ((unsigned int)(CLK_FREQ / hz))
  /src/sys/arch/news68k/news68k/
clock.c 80 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.
  /src/lib/libm/src/
e_fmodf.c 35 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;}
e_fmod.c 36 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>=0) {hx=hz;lx=lz;
    [all...]
e_fmodl.c 77 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>=0) {hx=hz;lx=lz;
    [all...]
k_sincos.h 41 double hz, r, v, w, z; local
54 hz = z / 2;
55 w = 1 - hz;
56 *cs = w + (((1 - w) - hz) + (z * r - x * y));
s_remquof.c 37 int32_t n,hx,hy,hz,ix,iy,sx,i; local
86 hz=hx-hy;
87 if(hz<0) hx = hx << 1;
88 else {hx = hz << 1; q++;}
91 hz=hx-hy;
92 if(hz>=0) {hx=hz;q++;}
s_remquo.c 39 int32_t n,hx,hy,hz,ix,iy,sx,i; local
112 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
113 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;}
114 else {hx = hz+hz+(lz>>31); lx = lz+lz; q++;}
117 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
118 if(hz>=0) {hx=hz;lx=lz;q++;
    [all...]
  /src/lib/libc/gen/
clock.c 62 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);
  /src/sys/arch/hpcmips/hpcmips/
clock.c 75 #include <sys/kernel.h> /* hz */
110 hz = clock->hz;
111 tick = 1000000 / hz;
  /src/lib/libm/ld80/
k_cosl.c 69 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));
  /src/sys/arch/luna68k/luna68k/
clock.c 73 hz = 60; /* LUNA-I is clocked at 60Hz, not 100Hz */
75 tick = 1000000 / hz; /* number of microseconds between interrupts */
  /src/sys/arch/mvme68k/mvme68k/
clock.c 108 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;
116 printf("cannot get %d Hz statclock; using 100 Hz\n", stathz);
  /src/sys/arch/ia64/ia64/
clock.c 74 * to implement a 1000hz clock.
91 stathz = hz;
92 ia64_clock_reload = (itc_frequency + hz / 2) / hz;
  /src/sys/dev/ppbus/
lptvar.h 49 #define LPT_TIMEOUT ((hz)*16)
50 #define LPT_STEP ((hz)/4)
75 #define MAX_SLEEP (hz*5) /* Timeout while waiting for device ready */
  /src/sys/external/bsd/drm2/include/linux/
delay.h 70 ((hz < 1000) && (msec < (1000/(unsigned)hz))))
jiffies.h 38 #include <asm/param.h> /* HZ */
60 if (((1000000000 % hz) == 0) || (nsec >= 20000000000ul))
61 return (nsec/1000000000)*hz;
63 return (nsec*hz)/1000000000;
102 return (unsigned int)((unsigned long)j*1000000/hz);
  /src/lib/libm/ld128/
k_cosl.c 49 long double hz,z,r,w; local
54 hz = 0.5*z;
55 w = one-hz;
56 return w + (((one-w)-hz) + (z*r-x*y));
  /src/sys/arch/hpcmips/include/
sysconf.h 75 int hz; member in struct:platform_clock
  /src/sys/sys/
kernel.h 58 extern int tick; /* usec per tick (1000000 / hz) */
60 extern int hz; /* system clock's frequency */
  /src/usr.sbin/cpuctl/arch/
sparc.c 52 int cpu_arch, mid, hz; local
71 len = sizeof(hz);
72 if (sysctlbyname(path, &hz, &len, 0, 0) == -1)
80 printf("%s: mid %d: %s @ %d MHz, %s FPU\n", cpuname, mid, name, hz / 1000000, fpuname);

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 91011>>