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

  /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...]
  /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_org/tools/android/device_stats_monitor/
device_stats_monitor.cc 34 // Records stats continuously at |hz| cycles per second util
40 void Start(int hz) {
41 const int sample_interval = 1000000 / hz;
92 " --hz=HZ Number of samples/second. default=%d\n",
97 int hz = command_line.HasSwitch("hz") ? local
98 atoi(command_line.GetSwitchValueNative("hz").c_str()) :
104 g_device_stats_monitor->Start(hz);
  /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/chromium_org/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 276 int hz = get_user_hz(); local
280 fprintf(fp, " used %d/%d/%d", ci->ndm_used/hz,
281 ci->ndm_confirmed/hz, ci->ndm_updated/hz);
iproute.c 290 static int hz; local
467 if (!hz)
468 hz = get_user_hz();
470 fprintf(fp, " expires %dsec", ci->rta_expires/hz);
479 fprintf(fp, " age %dsec", ci->rta_lastuse/hz);
492 if (!hz)
493 hz = get_user_hz();
497 fprintf(fp, " expires %dsec", ci->rta_expires/hz);
506 fprintf(fp, " age %dsec", ci->rta_lastuse/hz);
    [all...]
  /external/iproute2/tc/
tc_util.c 458 int hz = get_user_hz(); local
460 fprintf(f, " installed %u sec", (unsigned)(tm->install/hz));
462 fprintf(f, " used %u sec", (unsigned)(tm->lastuse/hz));
464 fprintf(f, " expires %u sec", (unsigned)(tm->expires/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;
  /packages/inputmethods/PinyinIME/jni/include/
dictdef.h 136 char16 hz; member in struct:ime_pinyin::SingleCharItem
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
sysinfo.cc 395 // SMP, APIC, or APM support. hz should be 64-bit in freebsd 7.0
397 // wrong answer on machines faster than 2^32 Hz). See
406 uint64_t hz = 0; local
408 unsigned int hz = 0; local
410 size_t sz = sizeof(hz);
412 if ( sysctlbyname(sysctl_path, &hz, &sz, NULL, 0) != 0 ) {
417 cpuinfo_cycles_per_second = hz;
    [all...]
  /external/iproute2/lib/
utils.c 489 int hz = 0; local
492 if (getenv("HZ"))
493 return atoi(getenv("HZ")) ? : HZ;
508 hz = denom;
511 if (hz)
512 return hz;
513 return HZ;
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
SensorActivity.java 282 String hz = mLastActualUpdateMs <= 0 ? "--" : local
284 mTextActualHz.setText(hz);
294 String hz = mLastActualUpdateMs <= 0 ? "--" : local
296 mTextActualHz.setText(hz);
323 int hz = Integer.parseInt(str.trim()); local
325 // Cap the value. 50 Hz is a reasonable max value for the emulator.
326 if (hz <= 0 || hz > 50) {
327 hz = 50;
330 if (hz != mTargetSampleRate)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
sysinfo.cc 410 // SMP, APIC, or APM support. hz should be 64-bit in freebsd 7.0
412 // wrong answer on machines faster than 2^32 Hz). See
421 uint64_t hz = 0; local
423 unsigned int hz = 0; local
425 size_t sz = sizeof(hz);
427 if ( sysctlbyname(sysctl_path, &hz, &sz, NULL, 0) != 0 ) {
432 cpuinfo_cycles_per_second = hz;
    [all...]
  /external/iproute2/misc/
ss.c 488 int hz = get_user_hz(); local
489 return print_ms_timer(((timeout*1000) + hz-1)/hz);
1260 int hz = get_user_hz(); local
1261 if (s.rto && s.rto != 3*hz)
1262 printf(" rto:%g", (double)s.rto/hz);
1264 printf(" ato:%g", (double)s.ato/hz);
    [all...]

Completed in 1059 milliseconds