HomeSort by relevance Sort by last modified time
    Searched defs:hz (Results 1 - 18 of 18) sorted by null

  /bionic/libm/src/
e_fmod.c 32 int32_t n,hx,hy,hz,ix,iy,sx,i; local
98 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
99 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;}
101 if((hz|lz)==0) /* return sign(x)*0 */
103 hx = hz+hz+(lz>>31); lx = lz+lz;
106 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
107 if(hz>=0) {hx=hz;lx=lz;
    [all...]
e_fmodf.c 34 int32_t n,hx,hy,hz,ix,iy,sx,i; local
77 hz=hx-hy;
78 if(hz<0){hx = hx+hx;}
80 if(hz==0) /* return sign(x)*0 */
82 hx = hz+hz;
85 hz=hx-hy;
86 if(hz>=0) {hx=hz;}
k_cos.c 72 double hz,z,r,w; local
76 hz = (float)0.5*z;
77 w = one-hz;
78 return w + (((one-w)-hz) + (z*r-x*y));
s_remquo.c 32 int32_t n,hx,hy,hz,ix,iy,sx,i; local
105 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
106 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;}
107 else {hx = hz+hz+(lz>>31); lx = lz+lz; q++;}
110 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
111 if(hz>=0) {hx=hz;lx=lz;q++;
    [all...]
s_remquof.c 32 int32_t n,hx,hy,hz,ix,iy,sx,i; local
81 hz=hx-hy;
82 if(hz<0) hx = hx << 1;
83 else {hx = hz << 1; q++;}
86 hz=hx-hy;
87 if(hz>=0) {hx=hz;q++;}
  /external/fdlibm/
e_fmod.c 35 int n,hx,hy,hz,ix,iy,sx,i; local
103 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
104 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;}
106 if((hz|lz)==0) /* return sign(x)*0 */
108 hx = hz+hz+(lz>>31); lx = lz+lz;
111 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
112 if(hz>=0) {hx=hz;lx=lz;
    [all...]
k_cos.c 71 double a,hz,z,r,qx; local
88 hz = 0.5*z-qx;
90 return a - (hz - (z*r-x*y));
  /external/chromium/third_party/libevent/compat/sys/
_libevent_time.h 147 int hz; /* clock frequency */ member in struct:clockinfo
148 int tick; /* micro-seconds per hz tick */
_time.h 147 int hz; /* clock frequency */ member in struct:clockinfo
148 int tick; /* micro-seconds per hz tick */
  /external/iproute2/ip/
ipneigh.c 272 int hz = get_user_hz(); local
276 fprintf(fp, " used %d/%d/%d", ci->ndm_used/hz,
277 ci->ndm_confirmed/hz, ci->ndm_updated/hz);
iproute.c 133 static int hz; local
433 if (!hz)
434 hz = get_user_hz();
436 fprintf(fp, " expires %dsec", ci->rta_expires/hz);
445 fprintf(fp, " age %dsec", ci->rta_lastuse/hz);
459 if (!hz)
460 hz = get_user_hz();
464 fprintf(fp, " expires %dsec", ci->rta_expires/hz);
473 fprintf(fp, " age %dsec", ci->rta_lastuse/hz);
495 if (!hz)
    [all...]
  /external/iproute2/tc/
tc_util.c 485 int hz = get_user_hz(); local
487 fprintf(f, " installed %u sec", (unsigned)(tm->install/hz));
489 fprintf(f, " used %u sec", (unsigned)(tm->lastuse/hz));
491 fprintf(f, " expires %u sec", (unsigned)(tm->expires/hz));
  /packages/inputmethods/PinyinIME/jni/include/
dictdef.h 136 char16 hz; member in struct:ime_pinyin::SingleCharItem
  /system/media/opensles/tests/sandbox/
intbufq.c 149 float hz = 441; local
152 sine[i].left = sin((float) (i / (sr / hz)) * pi2 ) * 32000.0;
156 square[i].left = (i % (unsigned) (sr / hz)) < 50 ? 32767 : -32768;
160 sawtooth[i].left = ((((int) (i % (unsigned) (sr / hz))) - 50) / 100.0) * 60000.0 - 30000.0;
  /external/iproute2/lib/
utils.c 142 else if (strcasecmp(p, "j") == 0 || strcasecmp(p, "hz") == 0 ||
484 int hz = 0; local
487 if (getenv("HZ"))
488 return atoi(getenv("HZ")) ? : HZ;
503 hz = denom;
506 if (hz)
507 return hz;
508 return HZ;
  /external/iproute2/misc/
ss.c 423 int hz = get_user_hz(); local
424 return print_ms_timer(((timeout*1000) + hz-1)/hz);
1194 int hz = get_user_hz(); local
1195 if (s.rto && s.rto != 3*hz)
1196 printf(" rto:%g", (double)s.rto/hz);
1198 printf(" ato:%g", (double)s.ato/hz);
    [all...]
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3dtypes.h 186 D3DVALUE hz; member in union:_D3DHVERTEX::__anon6664
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DTYPES.H 186 D3DVALUE hz; member in union:_D3DHVERTEX::__anon6847

Completed in 1342 milliseconds