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

12 3 4 5 6 7 8 91011>>

  /external/fdlibm/
e_acosh.c 36 one = 1.0, variable
60 return __ieee754_log(2.0*x-one/(x+ieee_sqrt(t-one)));
62 t = x-one;
s_modf.c 27 static const double one = 1.0; variable
29 static double one = 1.0; variable
63 *iptr = x*one;
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_acosh.c 38 one = 1.0, variable
59 return __ieee754_log(2.0*x-one/(x+sqrt(t-one)));
61 t = x-one;
e_atanhf.c 22 static const float one = 1.0, huge = 1e30; variable
41 t = (float)0.5*log1pf(t+t*x/(one-x));
43 t = (float)0.5*log1pf((x+x)/(one-x));
e_cosh.c 41 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
59 w = one+t;
61 return one+(t*t)/(w+w);
e_coshf.c 22 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
39 w = one+t;
40 if (ix<0x39800000) return one; /* cosh(tiny) = 1 */
41 return one+(t*t)/(w+w);
e_sinh.c 38 static const double one = 1.0, shuge = 1.0e307; variable
58 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
60 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one));
61 return h*(t+t/(t+one));
e_sinhf.c 22 static const float one = 1.0, shuge = 1.0e37; variable
41 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
43 if(ix<0x3f800000) return h*((float)2.0*t-t*t/(t+one));
44 return h*(t+t/(t+one));
s_modff.c 22 static const float one = 1.0; variable
50 *iptr = x*one;
e_acoshl.c 52 one = 1.0; variable
84 RETURNI(logl(2.0*x-one/(x+sqrtl(t-one))));
86 t = x-one;
e_atanh.c 41 static const double one = 1.0, huge = 1e300; variable
60 t = 0.5*log1p(t+t*x/(one-x));
62 t = 0.5*log1p((x+x)/(one-x));
e_atanhl.c 51 static const double one = 1.0, huge = 1e300; variable
70 t = 0.5*log1pl(t+t*x/(one-x));
72 t = 0.5*log1pl((x+x)/(one-x));
k_cosf.c 27 one = 1.0, variable
45 return ((one+z*C0) + w*C1) + (w*z)*r;
s_asinh.c 33 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
46 if(huge+x>one) return x; /* return x inexact except 0 */
52 w = __ieee754_log(2.0*t+one/(__ieee754_sqrt(x*x+one)+t));
55 w =log1p(fabs(x)+t/(one+__ieee754_sqrt(one+t)));
s_asinhf.c 23 one = 1.0000000000e+00, /* 0x3F800000 */ variable
36 if(huge+x>one) return x; /* return x inexact except 0 */
42 w = __ieee754_logf((float)2.0*t+one/(__ieee754_sqrtf(x*x+one)+t));
45 w =log1pf(fabsf(x)+t/(one+__ieee754_sqrtf(one+t)));
s_modf.c 30 static const double one = 1.0; variable
62 *iptr = x*one;
s_tanh.c 43 static const double one = 1.0, two = 2.0, tiny = 1.0e-300, huge = 1.0e300; variable
56 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
57 else return one/x-one; /* tanh(NaN) = NaN */
63 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
67 z = one - two/(t+two);
74 z = one - tiny; /* raise inexact flag */
s_tanhf.c 22 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
34 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
35 else return one/x-one; /* tanh(NaN) = NaN */
41 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
45 z = one - two/(t+two);
52 z = one - tiny; /* raise inexact flag */
  /external/chromium_org/tools/clang/plugins/tests/
missing_ctor.cpp 20 MissingInCPPOK one; local
  /external/clang/test/SemaCXX/
gnu-case-ranges.cpp 5 one, enumerator in enum:E
16 case one:
  /external/compiler-rt/test/asan/TestCases/
global-location.cc 24 int one = argc - 1; local
26 case 'g': return global[one * 11];
27 case 'c': return C::array[one * 11];
32 return array[one * 11];
36 return str[one * 11];
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
enum.pass.cpp 46 enum Enum {zero, one}; enumerator in enum:Enum
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
enum.pass.cpp 37 enum Enum {zero, one}; enumerator in enum:Enum
  /art/runtime/
utf-inl.h 25 uint8_t one = *(*utf8_data_in)++; local
26 if ((one & 0x80) == 0) {
27 // one-byte encoding
28 return one;
32 if ((one & 0x20) == 0) {
34 return ((one & 0x1f) << 6) | (two & 0x3f);
38 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
  /build/core/
distdir.mk 37 define copy-one-dist-file
47 # copy-one-dist-file to avoid multiple rules for the same target.
66 $(eval $(call copy-one-dist-file,\

Completed in 617 milliseconds

12 3 4 5 6 7 8 91011>>