/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...] |
/device/google/contexthub/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));
|
/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));
|
/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
|
/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/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/joints/ |
DistanceJoint.java | 83 /** Set/get frequency in Hz. */ 84 public void setFrequency (float hz) { 85 jniSetFrequency(addr, hz); 88 private native void jniSetFrequency (long addr, float hz); /* 90 joint->SetFrequency( hz ); 93 /** Set/get frequency in Hz. */
|
MouseJoint.java | 84 public void setFrequency (float hz) { 85 jniSetFrequency(addr, hz); 88 private native void jniSetFrequency (long addr, float hz); /* 90 joint->SetFrequency(hz);
|
WeldJoint.java | 72 public void setFrequency (float hz) { 73 jniSetFrequency(addr, hz); 76 private native void jniSetFrequency (long addr, float hz); /* 78 joint->SetFrequency(hz);
|
WheelJoint.java | 168 public void setSpringFrequencyHz (float hz) { 169 jniSetSpringFrequencyHz(addr, hz); 172 private native void jniSetSpringFrequencyHz (long addr, float hz); /* 174 joint->SetSpringFrequencyHz(hz);
|
/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/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Joints/ |
b2DistanceJoint.h | 93 /// Set/get frequency in Hz. 94 void SetFrequency(float32 hz); 149 inline void b2DistanceJoint::SetFrequency(float32 hz) 151 m_frequencyHz = 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-trace/catapult/third_party/vinn/third_party/parse5/benchmark/ |
index.js | 31 console.log('Working copy is x' + (this[0].hz / this[1].hz).toFixed(2) + ' times faster vs upstream.');
|
/hardware/intel/img/hwcomposer/merrifield/include/ |
ExternalDevice.h | 36 virtual void setRefreshRate(int hz);
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/joints/ |
DistanceJoint.java | 60 /** Set/get frequency in Hz. */ 61 public void setFrequency (float hz) { 62 joint.setFrequency(hz); 65 /** Set/get frequency in Hz. */
|
MouseJoint.java | 62 public void setFrequency (float hz) { 63 joint.setFrequency(hz);
|
/hardware/bsp/intel/peripheral/libmraa/api/mraa/ |
spi.hpp | 96 * @param hz the frequency to set in hz 100 frequency(int hz) 102 return (Result) mraa_spi_frequency(m_spi, hz);
|