HomeSort by relevance Sort by last modified time
    Searched refs:exp (Results 51 - 75 of 637) sorted by null

1 23 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_scalbnl.c 50 k = u.bits.exp; /* extract exponent */
54 k = u.bits.exp - 128;
61 {u.bits.exp = k; return u.e;}
67 u.bits.exp = k;
s_remquol.c 85 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */
86 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
87 (uy.bits.exp == BIAS + LDBL_MAX_EXP &&
90 if(ux.bits.exp<=uy.bits.exp) {
91 if((ux.bits.exp<uy.bits.exp) ||
105 if(ux.bits.exp == 0) { /* subnormal x */
107 ix = ux.bits.exp - (BIAS + 512);
109 ix = ux.bits.exp - BIAS
    [all...]
s_cosl.c 62 if (z.bits.exp == 0)
66 if (z.bits.exp == 32767)
s_sinl.c 58 if (z.bits.exp == 0)
62 if (z.bits.exp == 32767)
s_tanl.c 64 if (z.bits.exp == 0)
68 if (z.bits.exp == 32767)
  /external/chromium_org/third_party/icu/source/test/intltest/
tsputil.h 25 // void remainderTest(double x, double y, double exp);
26 void maxMinTest(double a, double b, double exp, UBool max);
  /external/chromium_org/third_party/webrtc/base/
exp_filter.h 33 // y(k) = min(alpha_^ exp * y(k-1) + (1 - alpha_^ exp) * sample, max_).
34 float Apply(float exp, float sample);
  /external/eigen/unsupported/doc/examples/
MatrixExponential.cpp 15 std::cout << "The matrix exponential of A is:\n" << A.exp() << "\n\n";
MatrixFunction.cpp 8 return std::exp(x);
  /external/icu/icu4c/source/test/intltest/
tsputil.h 25 // void remainderTest(double x, double y, double exp);
26 void maxMinTest(double a, double b, double exp, UBool max);
numfmtst.h 219 const UnicodeString& exp, UBool rt=TRUE);
222 const char *exp, UBool rt=TRUE) {
223 expect(fmt, n, UnicodeString(exp, ""), rt);
227 const UnicodeString& exp, UBool rt, UErrorCode errorCode);
230 const char *exp, UBool rt, UErrorCode errorCode) {
231 expect(fmt, n, UnicodeString(exp, ""), rt, errorCode);
235 const UnicodeString& exp, UErrorCode errorCode) {
236 expect(fmt, n, exp, TRUE, errorCode);
240 const char *exp, UErrorCode errorCode) {
241 expect(fmt, n, UnicodeString(exp, ""), TRUE, errorCode)
    [all...]
  /external/libpng/contrib/tools/
intgamma.sh 70 /* The 'exp()' case must invert the above, taking a 20-bit fixed point
80 * To deal with this the following exp() function works out the exponent of the
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNumber.java 156 // int exp = 0;
160 // exp = Integer.parseInt(s.substring(e + 1));
242 // if (exp == 0)
261 // if (exp >= decimalLen)
262 // return sign + wholePart + decimalPart + zeros(exp - decimalLen);
264 // if (exp > 0)
265 // return sign + wholePart + decimalPart.substring(0, exp) + "."
266 // + decimalPart.substring(exp);
268 // return sign + "0." + zeros(-1 - exp) + wholePart + decimalPart;
316 int exp = Integer.parseInt(s.substring(e + 1)) local
    [all...]
  /external/oprofile/module/x86/
op_rtc.c 61 unsigned int exp, freq; local
77 exp = 0;
78 while (target > (1 << exp) + ((1 << exp) >> 1))
79 exp++;
80 freq = 16 - exp;
87 sysctl_parms.ctr[0].count = sysctl.ctr[0].count = 1 << exp;
  /external/deqp/framework/common/
tcuFloatFormat.cpp 100 int exp = 0; local
101 const double frac = deFractExp(deAbs(x), &exp);
111 --exp;
114 exp = m_minExp;
117 exp = de::max(exp, m_minExp);
120 const double oneULP = deLdExp(1.0, exp - m_fractionBits);
131 //! for subnormals it is less and for values of exp where 2^exp is too
133 int FloatFormat::exponentShift (int exp) cons
143 int exp = 0; local
204 int exp = 0; local
236 int exp = 0; local
    [all...]
  /external/deqp/framework/delibs/debase/
deInt32Test.c 73 int exp; local
108 deRcp32(val, &rcp, &exp);
111 DE_TEST_ASSERT(exp == numBits);
127 deRcp32(val, &rcp, &exp);
130 DE_TEST_ASSERT(exp == numBits);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Operation.java 160 public void setExpression(Expression exp)
162 exp.exprSetParent(Operation.this);
163 m_left = exp;
190 public void setExpression(Expression exp)
192 exp.exprSetParent(this);
193 m_right = exp;
  /external/chromium_org/third_party/sqlite/src/src/
printf.c 257 int exp, e2; /* exponent of real numbers */ local
490 exp = 0;
497 while( realvalue>=1e32 && exp<=350 ){ realvalue *= 1e-32; exp+=32; }
498 while( realvalue>=1e8 && exp<=350 ){ realvalue *= 1e-8; exp+=8; }
499 while( realvalue>=10.0 && exp<=350 ){ realvalue *= 0.1; exp++; }
500 while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; }
501 while( realvalue<1.0 ){ realvalue *= 10.0; exp--;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncExtFunction.java 255 ArgExtOwner(Expression exp)
257 m_exp = exp;
272 public void setExpression(Expression exp)
274 exp.exprSetParent(FuncExtFunction.this);
275 m_exp = exp;
287 Expression exp = (Expression)m_argVec.elementAt(i); local
288 exp.callVisitors(new ArgExtOwner(exp), visitor);
  /external/libsepol/tests/
debug.c 37 void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp)
41 for (cur = exp; cur != NULL; cur = cur->next) {
  /dalvik/vm/
Common.h 55 #define LIKELY(exp) (__builtin_expect((exp) != 0, true))
56 #define UNLIKELY(exp) (__builtin_expect((exp) != 0, false))
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
UnwantedTokenException.cs 84 string exp = ", expected " + expected;
86 exp = "";
89 return "UnwantedTokenException(found=" + null + exp + ")";
91 return "UnwantedTokenException(found=" + Token.Text + exp + ")";
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
UnwantedTokenException.cs 97 string exp = ", expected " + expected;
100 exp = "";
104 return "UnwantedTokenException(found=" + null + exp + ")";
106 return "UnwantedTokenException(found=" + Token.Text + exp + ")";
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioUtilities.cpp 56 return 1 - exp(-1 / (sampleRate * timeConstant));
  /external/chromium_org/v8/test/mjsunit/es6/
math-expm1.js 18 // Math.expm1(x) stays reasonably close to Math.exp(x) - 1 for large values.
20 var expected = Math.exp(x) - 1;
22 expected = Math.exp(-x) - 1;
27 // Use six terms of Taylor expansion at 0 for exp(x) as test expectation:
28 // exp(x) - 1 == exp(0) + exp(0) * x + x * x / 2 + ... - 1
50 assertEquals(Infinity, Math.exp(1.7976931348623157e308));

Completed in 2345 milliseconds

1 23 4 5 6 7 8 91011>>