HomeSort by relevance Sort by last modified time
    Searched defs:one (Results 26 - 50 of 275) sorted by null

12 3 4 5 6 7 8 91011

  /bionic/libm/src/
e_cosh.c 42 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
61 w = one+t;
63 return one+(t*t)/(w+w);
e_coshf.c 23 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
40 w = one+t;
41 if (ix<0x39800000) return one; /* cosh(tiny) = 1 */
42 return one+(t*t)/(w+w);
e_sinh.c 39 static const double one = 1.0, shuge = 1.0e307; variable
60 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
62 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one));
63 return h*(t+t/(t+one));
e_sinhf.c 23 static const float one = 1.0, shuge = 1.0e37; variable
42 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
44 if(ix<0x3f800000) return h*((float)2.0*t-t*t/(t+one));
45 return h*(t+t/(t+one));
k_cosf.c 28 one = 1.0, variable
46 return ((one+z*C0) + w*C1) + (w*z)*r;
s_asinh.c 32 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
45 if(huge+x>one) return x; /* return x inexact except 0 */
51 w = __ieee754_log(2.0*t+one/(__ieee754_sqrt(x*x+one)+t));
54 w =log1p(fabs(x)+t/(one+__ieee754_sqrt(one+t)));
s_asinhf.c 24 one = 1.0000000000e+00, /* 0x3F800000 */ variable
37 if(huge+x>one) return x; /* return x inexact except 0 */
43 w = __ieee754_logf((float)2.0*t+one/(__ieee754_sqrtf(x*x+one)+t));
46 w =log1pf(fabsf(x)+t/(one+__ieee754_sqrtf(one+t)));
s_modf.c 30 static const double one = 1.0; variable
58 *iptr = x*one;
s_tanh.c 27 * 2. 0 <= x <= 2**-55 : tanh(x) := x*(one+x)
44 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
58 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
59 else return one/x-one; /* tanh(NaN) = NaN */
65 return x*(one+x); /* tanh(small) = small */
68 z = one - two/(t+two);
75 z = one - tiny; /* raised inexact flag */
s_tanhf.c 23 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
35 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
36 else return one/x-one; /* tanh(NaN) = NaN */
42 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
46 z = one - two/(t+two);
53 z = one - tiny; /* raise inexact flag */
  /build/core/
distdir.mk 37 define copy-one-dist-file
60 $(call copy-one-dist-file, \
  /dalvik/libdex/
DexUtf.h 42 unsigned int one, two, three; local
44 one = *(*pUtf8Ptr)++;
45 if ((one & 0x80) != 0) {
48 if ((one & 0x20) != 0) {
51 return ((one & 0x0f) << 12) |
56 return ((one & 0x1f) << 6) |
60 /* one-byte encoding */
61 return one;
  /external/clang/test/CodeGen/
bitfield-init.c 10 struct Token one = { 1 }; local
  /external/fdlibm/
e_atanh.c 36 static const double one = 1.0, huge = 1e300; variable
38 static double one = 1.0, huge = 1e300; variable
64 t = 0.5*ieee_log1p(t+t*x/(one-x));
66 t = 0.5*ieee_log1p((x+x)/(one-x));
e_cosh.c 38 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
40 static double one = 1.0, half=0.5, huge = 1.0e300; variable
64 w = one+t;
66 return one+(t*t)/(w+w);
79 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
e_sinh.c 35 static const double one = 1.0, shuge = 1.0e307; variable
37 static double one = 1.0, shuge = 1.0e307; variable
63 if(shuge+x>one) return x;/* ieee_sinh(tiny) = tiny with inexact */
65 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one));
66 return h*(t+t/(t+one));
73 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
s_asinh.c 32 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
49 if(huge+x>one) return x; /* return x inexact except 0 */
55 w = __ieee754_log(2.0*t+one/(ieee_sqrt(x*x+one)+t));
58 w =ieee_log1p(ieee_fabs(x)+t/(one+ieee_sqrt(one+t)));
s_tanh.c 24 * 2. 0 <= x <= 2**-55 : ieee_tanh(x) := x*(one+x)
41 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
43 static double one=1.0, two=2.0, tiny = 1.0e-300; variable
62 if (jx>=0) return one/x+one; /* ieee_tanh(+-inf)=+-1 */
63 else return one/x-one; /* ieee_tanh(NaN) = NaN */
69 return x*(one+x); /* ieee_tanh(small) = small */
72 z = one - two/(t+two);
79 z = one - tiny; /* raised inexact flag *
    [all...]
  /external/v8/test/mjsunit/compiler/
regress-stacktrace-methods.js 36 Hest.prototype.one = function(x) { x.two(); }
45 o.one(s);
47 %OptimizeFunctionOnNextCall(Hest.prototype.one);
49 o.one(s);
54 o.one(s);
59 var p1 = stack.indexOf("at Hest.one");
  /external/v8/test/mjsunit/
smi-negative-zero.js 31 var one = 1; variable
40 assertEquals(-Infinity, one / (-zero), "one / -0 I");
42 assertEquals(-Infinity, one / (zero * minus_one), "one / -1");
43 assertEquals(-Infinity, one / (minus_one * zero), "one / -0 II");
44 assertEquals(Infinity, one / (zero * zero), "one / 0 I");
45 assertEquals(1, one / (minus_one * minus_one), "one / 1")
    [all...]
keyed-call-generic.js 73 function one () { return 1; } function
76 var fixed_array = [zero, one, two];
78 var dict_array = [ zero, one, two ];
81 var fast_prop = { zero: zero, one: one, two: two };
83 var normal_prop = { zero: zero, one: one, two: two };
88 var first3str = ['zero', 'one', 'two'];
113 testException([zero, one, /* hole */ ], [0, 1, 2], [false, false, true]);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/operator/
strictEquality.js 57 var anObject = { one:1 , two:2 };
62 testcases[count++] = new TestCase( SECTION, "(anObject === { one:1 , two:2 }) ",
63 false, (anObject === { one:1 , two:2 }));
65 testcases[count++] = new TestCase( SECTION, "({ one:1 , two:2 } === anObject) ",
66 false, ({ one:1 , two:2 } === anObject));
  /dalvik/tests/003-omnibus-opcodes/src/
Throw.java 29 public void one() { method in class:Throw
30 System.out.println("Throw.one");
119 th.one();
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/jgss/kerberos/
KerberosNameTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
39 KerberosName one = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE); local
41 assertEquals(one, another);
43 one = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE);
45 assertEquals(one, another);
47 one = new KerberosName("service@localhost", GSSName.NT_USER_NAME);
49 assertEquals(one, another);
51 one = new KerberosName("service@localhost", GSSName.NT_USER_NAME);
53 assertFalse(one.equals(another));
56 one = new KerberosName("service@localhost", KRB5_PRINCIPAL_NAMETYPE)
    [all...]
  /dalvik/tests/050-sync-test/src/
Main.java 35 CpuThread one, two; local
37 one = new CpuThread(1);
40 one.start();
54 one.join();

Completed in 560 milliseconds

12 3 4 5 6 7 8 91011