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

1 2 3

  /system/extras/tests/workloads/
powerave.py 7 print "powersum.py [OPTIONS] HZ VOLTAGE [FILE]"
21 hz = float(argvrem[0]) variable
41 totalpower += val/hz
43 avecurrent = totalpower * hz *1000 / samplectr
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_fmod.c 31 int32_t n,hx,hy,hz,ix,iy,sx,i; local
97 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
98 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;}
100 if((hz|lz)==0) /* return sign(x)*0 */
102 hx = hz+hz+(lz>>31); lx = lz+lz;
105 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
106 if(hz>=0) {hx=hz;lx=lz;
    [all...]
e_fmodf.c 33 int32_t n,hx,hy,hz,ix,iy,sx,i; local
76 hz=hx-hy;
77 if(hz<0){hx = hx+hx;}
79 if(hz==0) /* return sign(x)*0 */
81 hx = hz+hz;
84 hz=hx-hy;
85 if(hz>=0) {hx=hz;}
k_cos.c 71 double hz,z,r,w; local
76 hz = 0.5*z;
77 w = one-hz;
78 return w + (((one-w)-hz) + (z*r-x*y));
s_remquo.c 34 int32_t n,hx,hy,hz,ix,iy,sx,i; local
107 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
108 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;}
109 else {hx = hz+hz+(lz>>31); lx = lz+lz; q++;}
112 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
113 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++;}
e_fmodl.c 68 int64_t hx,hz; /* We need a carry bit even if LDBL_MANH_SIZE is 32. */ local
121 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
122 if(hz<0){hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx;}
124 if ((hz|lz)==0) /* return sign(x)*0 */
126 hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz;
129 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
130 if(hz>=0) {hx=hz;lx=lz;
    [all...]
s_remquol.c 71 int64_t hx,hz; /* We need a carry bit even if LDBL_MANH_SIZE is 32. */ local
131 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
132 if(hz<0){hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx;}
133 else {hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz; q++;}
136 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
137 if(hz>=0) {hx=hz;lx=lz;q++;
    [all...]
  /device/google/contexthub/firmware/lib/libm/
ef_fmod.c 37 __int32_t n,hx,hy,hz,ix,iy,sx,i; local
83 hz=hx-hy;
84 if(hz<0){hx = hx+hx;}
86 if(hz==0) /* return sign(x)*0 */
88 hx = hz+hz;
91 hz=hx-hy;
92 if(hz>=0) {hx=hz;}
kf_cos.c 38 float a,hz,z,r,qx; local
55 hz = (float)0.5*z-qx;
57 return a - (hz - (z*r-x*y));
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
e_fmod.c 37 int32_t 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 68 double a,hz,z,r,qx; local
85 hz = 0.5*z-qx;
87 return a - (hz - (z*r-x*y));
  /external/deqp/framework/opengl/simplereference/
sglrContextUtil.cpp 47 float hz = (p0.z() + p1.z()) * 0.5f; local
51 p0.x(), p1.y(), hz, 1.0f,
52 p1.x(), p0.y(), hz, 1.0f,
117 float hz = (p0.z() + p1.z()) * 0.5f; local
121 p0.x(), p1.y(), hz, 1.0f,
122 p1.x(), p0.y(), hz, 1.0f,
  /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));
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
k_cosl.c 53 long double hz,z,r,w; local
58 hz = 0.5*z;
59 w = one-hz;
60 return w + (((one-w)-hz) + (z*r-x*y));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
_codecs_cn.c 11 * hz is predefined as 100 on AIX. So we undefine it to avoid
12 * conflict against hz codec's.
15 #undef hz macro
310 * HZ codec
313 ENCODER_INIT(hz)
319 ENCODER_RESET(hz)
329 ENCODER(hz)
370 DECODER_INIT(hz)
376 DECODER_RESET(hz)
382 DECODER(hz)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
_codecs_cn.c 11 * hz is predefined as 100 on AIX. So we undefine it to avoid
12 * conflict against hz codec's.
15 #undef hz macro
310 * HZ codec
313 ENCODER_INIT(hz)
319 ENCODER_RESET(hz)
329 ENCODER(hz)
370 DECODER_INIT(hz)
376 DECODER_RESET(hz)
382 DECODER(hz)
    [all...]
  /external/python/cpython2/Modules/cjkcodecs/
_codecs_cn.c 11 * hz is predefined as 100 on AIX. So we undefine it to avoid
12 * conflict against hz codec's.
15 #undef hz macro
310 * HZ codec
313 ENCODER_INIT(hz)
319 ENCODER_RESET(hz)
329 ENCODER(hz)
370 DECODER_INIT(hz)
376 DECODER_RESET(hz)
382 DECODER(hz)
    [all...]
  /external/python/cpython3/Modules/cjkcodecs/
_codecs_cn.c 11 * hz is predefined as 100 on AIX. So we undefine it to avoid
12 * conflict against hz codec's.
15 #undef hz macro
325 * HZ codec
328 ENCODER_INIT(hz)
334 ENCODER_RESET(hz)
344 ENCODER(hz)
388 DECODER_INIT(hz)
394 DECODER_RESET(hz)
400 DECODER(hz)
    [all...]
  /external/ltp/testcases/kernel/syscalls/adjtimex/
adjtimex02.c 38 * is made to set buf.tick to a value < 900000/HZ
40 * is made to set buf.tick to a value > 1100000/HZ
110 static int hz; /* HZ from sysconf */ variable
208 /* set the HZ from sysconf */
209 hz = SAFE_SYSCONF(NULL, _SC_CLK_TCK);
235 buff.tick = 900000 / hz - 1;
241 buff.tick = 1100000 / hz + 1;
  /toolchain/binutils/binutils-2.27/gprof/
gprof.c 54 long hz = HZ_WRONG; variable
  /external/iproute2/bridge/
fdb.c 242 int hz = get_user_hz(); local
246 ci->ndm_used/hz);
248 ci->ndm_updated/hz);
250 fprintf(fp, "used %d/%d ", ci->ndm_used/hz,
251 ci->ndm_updated/hz);
  /external/iproute2/ip/
ipneigh.c 297 int hz = get_user_hz(); local
301 fprintf(fp, " used %d/%d/%d", ci->ndm_used/hz,
302 ci->ndm_confirmed/hz, ci->ndm_updated/hz);
  /frameworks/wilhelm/tests/sandbox/
intbufq.c 150 float hz = 441; local
153 sine[i].left = sin((float) (i / (sr / hz)) * pi2 ) * 32000.0;
157 square[i].left = (i % (unsigned) (sr / hz)) < 50 ? 32767 : -32768;
161 sawtooth[i].left = ((((int) (i % (unsigned) (sr / hz))) - 50) / 100.0) * 60000.0 - 30000.0;

Completed in 996 milliseconds

1 2 3