Searched refs:log10 (Results 1 - 25 of 95) sorted by relevance

1234

/macosx-10.10/swig-12/Lib/
H A Dmath.i51 extern double log10(double x);
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/mathswig/
H A Dmathswig.i33 double log10(double);
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/library/
H A Dfmath.tcl20 #@package: TclX-fmath acos asin atan ceil cos cosh exp fabs floor log log10 \
33 proc log10 x {uplevel 1 [list expr log10($x)]} procedure
/macosx-10.10/ruby-106/ruby/lib/
H A Dcmath.rb25 alias log10! log10
107 def log10(z) method in class:CMath
110 log10!(z)
346 module_function :log10!
347 module_function :log10
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/tests/
H A Dlibm.test30 atan exp log10 tan
34 acos - asin - atan - ceil - cos - cosh - exp - floor - log - log10 - sin - sinh -
101 {double log10(double)}
/macosx-10.10/ruby-106/ruby/lib/minitest/
H A Dbenchmark.rb28 min = (Math.log10(min) / Math.log10(base)).to_i
29 max = (Math.log10(max) / Math.log10(base)).to_i
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dfmath.test6 # exp, log, log10, sqrt, fabs, floor, ceil, fmod, pow.
98 Test fmath-1.14 {log10 tests} {
99 fchecknum [log10 0.5*10] 0.69897
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_math.rb157 check(0, Math.log10(1))
158 check(1, Math.log10(10))
159 check(2, Math.log10(100))
160 assert_equal(1.0/0, Math.log10(1.0/0))
161 assert_nothing_raised { assert_infinity(-Math.log10(+0.0)) }
162 assert_nothing_raised { assert_infinity(-Math.log10(-0.0)) }
163 assert_raise(Math::DomainError) { Math.log10(-1.0) }
H A Dtest_complex.rb1109 c = Math.log10(Complex(1, 2))
/macosx-10.10/ruby-106/ruby/
H A Dmath.c330 # define log10(x) ((x) < 0.0 ? nan("") : log10(x)) macro
375 return log10(x)/log10(2.0);
412 * Math.log10(numeric) -> float
416 * Math.log10(1) #=> 0.0
417 * Math.log10(10) #=> 1.0
418 * Math.log10(10**100) #=> 100.0
430 if (d0 < 0.0) domain_error("log10");
433 d = log10(d
[all...]
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/t/
H A D002Logger.t385 my $log10 = Log::Log4perl->get_logger("xxx.yyy.zzz");
399 eval { $log10->add_appender($app_file); };
401 eval { $log10->add_appender($app_screen); };
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/tr1/
H A Dmath.h73 using std::tr1::log10;
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Dphonetogram.tcl46 set y [expr {[winfo height .f.c]*(2.0-log10($amplitude)/2.26)}]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/dbs/
H A Dtiff-grayscale.c82 gray[i] = (uint16) (-log10((double) i / (cmsize - 1)) * 1000);
/macosx-10.10/WebCore-7600.1.25/platform/audio/
H A DFFTFrame.cpp108 double mag1db = 20.0 * log10(mag1);
109 double mag2db = 20.0 * log10(mag2);
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/
H A Dlibm.tcl46 {double log10(double)}
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/plotchart/
H A Dscaling.tcl100 set expon [expr {int(log10($dx))}]
H A Dplotaxis.tcl274 set y [expr {pow(10.0,floor(log10($ymin)))}]
275 set ylogmax [expr {pow(10.0,ceil(log10($ymax)))+0.1}]
287 foreach {xcrd ycrd} [coordsToPixel $w $scaling($w,xmin) [expr {log10($yt)}]] {break}
462 set x [expr {pow(10.0,floor(log10($xmin)))}]
463 set xlogmax [expr {pow(10.0,ceil(log10($xmax)))+0.1}]
474 foreach {xcrd ycrd} [coordsToPixel $w [expr {log10($xt)}] $scaling($w,ymin)] {break}
/macosx-10.10/tcl-105/tk/tk/library/ttk/
H A Dspinbox.tcl166 set nsd [expr {int(ceil(-log10($delta)))}]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/controlwidget/
H A Dvertical_meter.tcl155 set ht [expr $pos + $interval*log10($mant)]
244 set lowDecade [expr log10($low)]
251 set highDecade [expr log10($high)]; # Don't truncate...
290 set valueRange [expr {log10($decadeHigh) - log10($decadeLow)}]
291 set value [expr {log10($needleCoords) - log10($decadeLow)}]
347 set logScale [expr {log10($decadeHigh/$decadeLow)}]
/macosx-10.10/vim-55/runtime/syntax/
H A Dampl.vim82 syn keyword amplBuiltInFunction cos exp floor log log10
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dtsdate.cpp238 double e = uprv_floor(log10(d));
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Target/
H A DTargetLibraryInfo.h183 /// double log10(double x);
184 log10, enumerator in enum:llvm::LibFunc::Func
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/tests/
H A Darith.sh614 float x=$((log10(nz))) y=$((log10($nz)))
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DIntrinsicLowering.cpp152 case Intrinsic::log10:
153 EnsureFPIntrinsicsExist(M, I, "log10f", "log10", "log10l");
507 case Intrinsic::log10: {
508 ReplaceFPIntrinsicWithCall(CI, "log10f", "log10", "log10l");

Completed in 366 milliseconds

1234