Searched refs:acosh (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/mathswig/
H A Dmathswig.i26 double acosh(double);
/macosx-10.10/ksh-23/ksh/src/lib/libast/uwin/
H A Dacosh.c39 static char sccsid[] = "@(#)acosh.c 8.1 (Berkeley) 6/4/93";
56 * acosh(x) = log [ x + sqrt(x*x-1) ]
58 * acosh(x) := log1p(x)+ln2, if (x > 1.0E20); else
59 * acosh(x) := log1p( sqrt(x-1) * (sqrt(x-1) + sqrt(x+1)) ) .
63 * acosh(x) is NaN with signal if x<1.
64 * acosh(NaN) is NaN without signal.
67 * acosh(x) returns the exact inverse hyperbolic cosine of x nearly
92 extern double acosh(x) function
/macosx-10.10/ruby-106/ruby/lib/
H A Dcmath.rb43 alias acosh! acosh
314 def acosh(z) method in class:CMath
317 acosh!(z)
378 module_function :acosh!
379 module_function :acosh
/macosx-10.10/ruby-106/ruby/missing/
H A Dacosh.c3 acosh.c -
8 public domain rewrite of acosh(3), asinh(3) and atanh(3)
36 acosh(double x) function
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_math.rb103 check(0, Math.acosh(1))
104 check(1, Math.acosh((Math::E ** 1 + Math::E ** -1) / 2))
105 check(2, Math.acosh((Math::E ** 2 + Math::E ** -2) / 2))
106 assert_raise(Math::DomainError) { Math.acosh(1.0 - Float::EPSILON) }
107 assert_raise(Math::DomainError) { Math.acosh(0) }
H A Dtest_complex.rb1133 c = Math.acosh(Complex(1, 2))
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/tr1/
H A Dmath.h42 using std::tr1::acosh;
/macosx-10.10/ruby-106/ruby/include/ruby/
H A Dmissing.h70 RUBY_EXTERN double acosh(double);
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/
H A Dlibm.tcl39 {double acosh(double)}
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DMath.pm186 =item acosh
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/tests/
H A Dlibm.test94 {double acosh(double)}
/macosx-10.10/vim-55/runtime/syntax/
H A Dampl.vim80 syn keyword amplBuiltInFunction abs acos acosh alias asin
H A Dpov.vim67 syn keyword povFunctions abs acos acosh asc asin asinh atan atan2 atanh ceil cos cosh defined degrees dimensions dimension_size div exp file_exists floor int internal ln log max min mod pow radians rand seed select sin sinh sqrt strcmp strlen tan tanh val vdot vlength vstr vturbulence
70 syn keyword povJuliaFunctions acosh asinh atan cosh cube pwr reciprocal sinh sqr tanh
H A Dverilogams.vim28 syn keyword verilogamsStatement above abs absdelay acos acosh ac_stim
H A Dgnuplot.vim66 syn keyword gnuplotFunc abs acos acosh arg asin asinh atan atanh atan2
H A Dnastran.vim79 syn keyword nastranDmapImplicit abs acos acosh andl asin asinh atan atan2
H A Dxmath.vim58 syn keyword xmathFunc acosh fft ISID Models querytransition
H A Dmaxima.vim35 syn keyword maximaFunc abasep abs absboxchar absint acos acosh acot acoth acsc
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Target/
H A DTargetLibraryInfo.h56 /// double acosh(double x);
57 acosh, enumerator in enum:llvm::LibFunc::Func
/macosx-10.10/llvmCore-3425.0.34/lib/Target/
H A DTargetLibraryInfo.cpp44 "acosh",
245 TLI.setUnavailable(LibFunc::acosh);
/macosx-10.10/ruby-106/ruby/
H A Dmath.c250 * Math.acosh(x) -> float
263 if (d0 < 1.0) domain_error("acosh");
264 d = acosh(d0);
808 rb_define_module_function(rb_mMath, "acosh", math_acosh, 1);
/macosx-10.10/zsh-61/zsh/Src/Modules/
H A Dmathfunc.c131 NUMMATHFUNC("acosh", math_func, 1, 1, MF_ACOSH | BFLAG(BF_GE1)),
268 retd = acosh(argd);
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DMathObject.cpp101 putDirectNativeFunctionWithoutTransition(vm, globalObject, Identifier(&vm, "acosh"), 1, mathProtoFuncACosh, NoIntrinsic, DontEnum | Function);
332 return JSValue::encode(jsDoubleNumber(acosh(exec->argument(0).toNumber(exec))));
/macosx-10.10/emacs-93/emacs/src/
H A Dfloatfns.c27 Define HAVE_INVERSE_HYPERBOLIC if you have acosh, asinh, and atanh.
572 DEFUN ("acosh", Facosh, Sacosh, 1, 1, 0,
580 domain_error ("acosh", arg);
583 IN_FLOAT (d = acosh (d), "acosh", arg);
585 IN_FLOAT (d = log (d + sqrt (d*d - 1.0)), "acosh", arg);
/macosx-10.10/emacs-93/emacs/lisp/calc/
H A Dcalc-lang.el119 ( acosh . calcFunc-arccosh )
242 ( acosh . calcFunc-arccosh )

Completed in 168 milliseconds

12