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

1 2

  /src/lib/libc/gen/
clock.c 62 clock_t hz = CLOCKS_PER_SEC; local in function:clock
66 return (clock_t)((ru.ru_utime.tv_sec + ru.ru_stime.tv_sec) * hz +
68 / 100 * hz / 10000);
  /src/sys/arch/sun68k/stand/libsa/
clock.c 10 int hz = 1000; variable in typeref:typename:int
18 return ((ticks / hz));
  /src/lib/libm/src/
e_fmod.c 36 int32_t n,hx,hy,hz,ix,iy,sx,i; local in function:__strong_alias
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_fmodf.c 35 int32_t n,hx,hy,hz,ix,iy,sx,i; local in function:__ieee754_fmodf
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;}
k_cos.c 68 double a,hz,z,r,qx; local in function:__kernel_cos
85 hz = 0.5*z-qx;
87 return a - (hz - (z*r-x*y));
k_cosf.c 36 float a,hz,z,r,qx; local in function:__kernel_cosf
53 hz = (float)0.5*z-qx;
55 return a - (hz - (z*r-x*y));
s_remquof.c 37 int32_t n,hx,hy,hz,ix,iy,sx,i; local in function:remquof
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 in function:remquo
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...]
k_sincos.h 41 double hz, r, v, w, z; local in function:__kernel_sincos
54 hz = z / 2;
55 w = 1 - hz;
56 *cs = w + (((1 - w) - hz) + (z * r - x * y));
e_fmodl.c 77 int64_t hx,hz; /* We need a carry bit even if EXT_FRACHBITS is 32. */ local in function:__ieee754_fmodl
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...]
s_remquol.c 81 int64_t hx,hz; /* We need a carry bit even if EXT_FRACHBITS is 32. */ local in function:remquol
139 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
140 if(hz<0){hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx;}
141 else {hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz; q++;}
144 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
145 if(hz>=0) {hx=hz;lx=lz;q++;
    [all...]
k_sincosl.h 59 long double hz, r, v, w, z; local in function:__kernel_sincosl
74 hz = z / 2;
75 w = 1 - hz;
78 *cs = w + (((1 - w) - hz) + (z * r - x * y));
114 long double hz, r, v, w, z; local in function:__kernel_sincosl
130 hz = z / 2;
131 w = 1 - hz;
135 *cs = w + (((1 - w) - hz) + (z * r - x * y));
  /src/sys/arch/hpcmips/include/
sysconf.h 75 int hz; member in struct:platform_clock
  /src/usr.sbin/cpuctl/arch/
sparc.c 52 int cpu_arch, mid, hz; local in function:identifycpu
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);
sparc64.c 53 uint64_t hz; local in function:identifycpu
78 len = sizeof(hz);
79 if (sysctlbyname(path, &hz, &len, 0, 0) == -1)
84 printf("%s: %s @ %ld MHz, CPU id %d\n", cpuname, name, hz / 1000000, id);
  /src/lib/libm/ld80/
k_cosl.c 69 long double hz,z,r,w; local in function:__kernel_cosl
73 hz = 0.5*z;
74 w = one-hz;
75 return w + (((one-w)-hz) + (z*r-x*y));
  /src/lib/libm/ld128/
k_cosl.c 49 long double hz,z,r,w; local in function:__kernel_cosl
54 hz = 0.5*z;
55 w = one-hz;
56 return w + (((one-w)-hz) + (z*r-x*y));
  /src/sys/conf/
param.c 105 #ifndef HZ
106 #define HZ 100
113 int hz = HZ; variable in typeref:typename:int
114 int tick = 1000000 / HZ;
116 int tickadj = (240000 / (60 * HZ)) ? (240000 / (60 * HZ)) : 1;
  /src/usr.bin/time/
time.c 165 int hz = (int)sysconf(_SC_CLK_TCK); local in function:main
169 ticks = hz * (ru.ru_utime.tv_sec + ru.ru_stime.tv_sec) +
170 hz * (ru.ru_utime.tv_usec + ru.ru_stime.tv_usec) / 1000000;
  /src/tests/kernel/
t_time_arith.c 50 enum { HZ = 100 };
52 int hz = HZ; variable in typeref:typename:int
53 int tick = 1000000/HZ;
  /src/libexec/rpc.rstatd/
rstat_proc.c 88 int hz; variable in typeref:typename:int
204 * statistics. It also retrieves "hz" and the "cp_time" array.
248 stats_all.s3.v_intr -= hz*(tm.tv_sec - btm.tv_sec) +
249 hz*(tm.tv_usec - (suseconds_t)(btm.tv_nsec / 1000))/1000000;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/
head.h 24 u32 hz; member in struct:nvkm_head::nvkm_head_state
  /src/sys/compat/common/
kern_info_43.c 154 long hz; member in struct:bsdi_si
289 ksi.hz = hz;
  /src/usr.bin/systat/
main.c 72 int hz, stathz, maxslp; variable in typeref:typename:int
229 hz = clk.hz;
  /src/sys/dev/mii/
atphy.c 118 uint32_t hz; member in struct:atphy_clk_25m::__anon3825cc2e0108
130 if (asc->mii_clk_25m <= select_clk[i].hz)

Completed in 38 milliseconds

1 2