/bionic/libm/upstream-freebsd/lib/msun/src/ |
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 | 46 static const double one = 1.0, two = 2.0, huge = 1.0e300; variable 59 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */ 60 else return one/x-one; /* tanh(NaN) = NaN */ 66 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */ 70 z = one - two/(t+two); 77 z = one - tiny; /* raise inexact flag */
|
s_tanhf.c | 23 static const float one=1.0, two=2.0, huge = 1.0e30; variable 36 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */ 37 else return one/x-one; /* tanh(NaN) = NaN */ 43 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */ 47 z = one - two/(t+two); 54 z = one - tiny; /* raise inexact flag */
|
/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,\
|
/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/clang/test/CodeGenCXX/ |
ms-integer-static-data-members-exported.cpp | 3 enum Enum { zero, one, two }; enumerator in enum:Enum
|
/external/clang/test/Preprocessor/ |
macro_fn.c | 5 #define one(x) 0 /* expected-note 2 {{defined here}} */ macro 14 one() /* ok */ 15 one(a) 16 one(a,) /* expected-error {{too many arguments provided to function-like macro invocation}} \ 18 one(a, b) /* expected-error {{too many arguments provided to function-like macro invocation}} */ 40 one_dot(x) /* empty ... argument: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */ 41 one_dot() /* empty first argument, elided ...: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
|
/external/clang/test/Sema/ |
attr-section.c | 21 enum __attribute__((section("NEAR,x"))) e { one }; // expected-error {{'section' attribute only applies to functions and global variables}} enumerator in enum:e
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
overflow-in-qsort.cc | 16 volatile int one = 1; variable 23 global_array[one * 10] = 0; // BOOM
|
/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/icu/icu4c/source/test/intltest/ |
listformattertest.h | 44 UnicodeString one, 51 UnicodeString one, 60 const UnicodeString one; member in class:ListFormatterTest
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/ |
ErrorCodeEnum.pass.cpp | 21 zero, one, two enumerator in enum:testing
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/ |
ErrorCodeEnum.pass.cpp | 21 zero, one, two enumerator in enum:testing
|
/external/openssh/ |
cipher-chachapoly.c | 55 const u_char one[8] = { 1, 0, 0, 0, 0, 0, 0, 0 }; /* NB little-endian */ local 87 chacha_ivsetup(&ctx->main_ctx, seqbuf, one);
|