HomeSort by: relevance | last modified time | path
    Searched defs:one (Results 1 - 25 of 465) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libm/noieee_src/
n_atan.c 94 double one=1.0; local
95 return(atan2(x,one));
101 float one=1.0; local
102 return (float)atan2(x,one);
n_asincos.c 103 double s,t,one=1.0; local
107 s=copysign(x,one);
109 return(atan2(x,sqrt(one-x*x)));
111 { t=one-s; s=t+t; return(atan2(x,sqrt(s-t*t))); }
176 double t,one=1.0; local
181 t=atan2(sqrt((one-x)/(one+x)),one);
183 t=atan2(one,0.0); /* t = PI/2 */
  /src/tests/usr.bin/xlint/lint1/
msg_186.c 9 unsigned one: 1; member in struct:bit_field
msg_145.c 9 unsigned one: 1; member in struct:bits
19 return sizeof(local_bits.one);
  /src/crypto/external/apache2/openssl/dist/crypto/ec/
ecp_ppc.c 31 static const unsigned long one[] = { 1, 0, 0, 0 }; local
33 ecp_nistz256_mul_mont(res, in, one);
  /src/crypto/external/bsd/openssl/dist/crypto/ec/
ecp_ppc.c 31 static const unsigned long one[] = { 1, 0, 0, 0 }; local
33 ecp_nistz256_mul_mont(res, in, one);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
max-value-size.c 18 char one; variable
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
compare-enum-type.h 21 one, enumerator in enum:e
  /src/external/mit/libuv/dist/src/win/
atomicops-inl.h 47 const char one = 1; local
51 : "0"(one), "m"(*target)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
backtrace-through-cu-nodebug-caller.c 24 volatile const long one = 1; local
27 return (*callback) () - one;
max-value-size.c 18 char one; variable
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
compare-enum-type.h 21 one, enumerator in enum:e
  /src/lib/libm/src/
e_acoshf.c 25 one = 1.0, variable
45 return __ieee754_logf((float)2.0*x-one/(x+__ieee754_sqrtf(t-one)));
47 t = x-one;
e_acosh.c 36 one = 1.0, variable
57 return __ieee754_log(2.0*x-one/(x+__ieee754_sqrt(t-one)));
59 t = x-one;
e_atanhf.c 24 static const float one = 1.0, huge = 1e30; variable
43 t = (float)0.5*log1pf(t+t*x/(one-x));
45 t = (float)0.5*log1pf((x+x)/(one-x));
e_coshf.c 25 static const float one = 1.0, half=0.5; variable
42 w = one+t;
44 return one+(t*t)/(w+w);
s_modf.c 31 static const double one = 1.0; variable
64 *iptr = x*one;
s_modff.c 24 static const float one = 1.0; variable
52 *iptr = x*one;
  /src/external/lgpl3/gmp/dist/tests/mpf/
t-int_p.c 27 one (mpf_srcptr f, int want) function
42 one (f, want);
44 one (f, want);
56 one (f, 1);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
break-template-cast.cc 30 one enumerator in enum:enum_test
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
break-template-cast.cc 30 one enumerator in enum:enum_test
  /src/external/gpl3/gcc/dist/libquadmath/math/
acoshq.c 33 one = 1.0, variable
54 return logq(2*x-one/(x+sqrtq(t-one)));
56 t = x-one;
modfq.c 32 static const __float128 one = 1.0; variable
58 *iptr = x*one;
61 return x*one;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
ctfloat.h 60 static real_t one; member in struct:CTFloat
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
acoshq.c 33 one = 1.0, variable
54 return logq(2*x-one/(x+sqrtq(t-one)));
56 t = x-one;

Completed in 25 milliseconds

1 2 3 4 5 6 7 8 91011>>