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

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/src/
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));
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_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_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++;}
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_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...]
  /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));
  /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/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,
  /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...]
  /hardware/intel/img/hwcomposer/common/devices/
ExternalDevice.cpp 260 void ExternalDevice::setRefreshRate(int hz)
264 ILOGTRACE("setting refresh rate to %d", hz);
276 if (hz == 0 && (mode.type & DRM_MODE_TYPE_PREFERRED))
279 if (hz == (int)mode.vrefresh)
283 mExpectedRefreshRate == hz && mHotplugEventPending) {
287 mExpectedRefreshRate = hz;
289 ILOGTRACE("changing refresh rate from %d to %d", mode.vrefresh, hz);
293 drm->setRefreshRate(IDisplayDevice::DEVICE_EXTERNAL, hz);
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_environment.c 50 int hz = uHZ; variable
user_environment.h 50 /* int hz; is declared in sys/kern/subr_param.c and refers to kernel timer frequency.
51 * See http://ivoras.sharanet.org/freebsd/vmware.html for additional info about kern.hz
52 * hz is initialized in void init_param1(void) in that file.
54 extern int hz;
  /hardware/intel/img/hwcomposer/include/
ExternalDevice.h 37 virtual void setRefreshRate(int 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;
  /hardware/intel/img/hwcomposer/common/base/
Drm.h 51 bool setRefreshRate(int device, int hz);
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_constants.h 77 #define SCTP_ZERO_COPY_TICK_DELAY (((100 * hz) + 999) / 1000)
78 #define SCTP_ZERO_COPY_SENDQ_TICK_DELAY (((100 * hz) + 999) / 1000)
638 #define MSEC_TO_TICKS(x) ((hz == 1000) ? x : ((((x) * hz) + 999) / 1000))
639 #define TICKS_TO_MSEC(x) ((hz == 1000) ? x : ((((x) * 1000) + (hz - 1)) / hz))
641 #define SEC_TO_TICKS(x) ((x) * hz)
642 #define TICKS_TO_SEC(x) (((x) + (hz - 1)) / hz)
    [all...]
  /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);
  /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));
  /external/bzip2/
blocksort.c 80 #define fpush(lz,hz) { stackLo[sp] = lz; \
81 stackHi[sp] = hz; \
84 #define fpop(lz,hz) { sp--; \
86 hz = stackHi[sp]; }
596 #define mpush(lz,hz,dz) { stackLo[sp] = lz; \
597 stackHi[sp] = hz; \
601 #define mpop(lz,hz,dz) { sp--; \
603 hz = stackHi[sp]; \
  /cts/tools/utils/
monsoon.py 28 Get 5000hz data from device number 7536, with unlimited number of samples
29 python2.6 monsoon.py --samples -1 --hz 5000 --serialno 7536
31 Get 200Hz data for 5 seconds (1000 events) from default device
32 python2.6 monsoon.py --samples 100 --hz 200
34 Get unlimited 200Hz data from device attached at /dev/ttyACM0
35 python2.6 monsoon.py --samples -1 --hz 200 --device /dev/ttyACM0
358 # In case FLAGS.hz doesn't divide native_hz exactly, use this invariant:
359 # 'offset' = (consumed samples) * FLAGS.hz - (emitted samples) * native_hz
369 need = (native_hz - offset + FLAGS.hz - 1) / FLAGS.hz
    [all...]

Completed in 1173 milliseconds

1 2 3