HomeSort by relevance Sort by last modified time
    Searched full:sqrt (Results 426 - 450 of 2838) sorted by null

<<11121314151617181920>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_log10.c 81 * since there is no very large cancellation near x = sqrt(2) or
82 * x = 1/sqrt(2), but we do it anyway since it costs little on CPUs
s_csqrtf.c 82 t = sqrt((a + hypot(a, b)) * 0.5);
85 t = sqrt((-a + hypot(a, b)) * 0.5);
  /cts/apps/CtsVerifier/lib/colorchecker/
imagetesthandler.cpp 96 float x = (static_cast<float>(i) + j) / sqrt(2.0);
97 float y = (j - static_cast<float>(i)) / sqrt(2.0);
  /external/chromium_org/third_party/freetype/include/freetype/internal/
ftcalc.h 42 /* The result of `sqrt(x)'. */
143 * Return sqrt(x*x+y*y), which is the same as `FT_Vector_Length' but uses
  /external/chromium_org/third_party/skia/experimental/Intersection/
LineParameters.h 20 // divide the result of xxxDistance() by sqrt(normalSquared())
55 double normal = sqrt(normalSquared());
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
transform.c 62 fact = 0.5 / sqrt(FRAMESAMPLES_HALF);
123 fact = sqrt(FRAMESAMPLES_HALF);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
rtt_filter.cc 109 if (fabs(diffFromAvg) > _jumpStdDevs * sqrt(_varRtt))
152 if (_maxRtt - _avgRtt > _driftStdDevs * sqrt(_varRtt))
  /external/eigen/Eigen/src/Eigen2Support/
MathFunctions.h 20 template<typename T> inline T ei_sqrt(const T& x) { using std::sqrt; return sqrt(x); }
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
dogleg.h 14 using std::sqrt;
95 temp = temp - delta / qnorm * numext::abs2(sgnorm / delta) + sqrt(numext::abs2(temp - delta / qnorm) + (1.-numext::abs2(delta / qnorm)) * (1.-numext::abs2(sgnorm / delta)));
  /external/eigen/unsupported/Eigen/src/NumericalDiff/
NumericalDiff.h 66 using std::sqrt;
72 const Scalar eps = sqrt(((std::max)(epsfcn,NumTraits<Scalar>::epsilon() )));
  /external/freetype/include/internal/
ftcalc.h 44 /* The result of `sqrt(x)'. */
147 * Return sqrt(x*x+y*y), which is the same as `FT_Vector_Length' but uses
  /external/llvm/test/CodeGen/ARM/
2009-08-21-PostRAKill.ll 29 %6 = tail call double @llvm.sqrt.f64(double %5) nounwind ; <double> [#uses=1]
40 declare double @llvm.sqrt.f64(double) nounwind readonly
  /external/llvm/test/MC/Mips/mips1/
invalid-mips2.s 14 sqrt.d $f17,$f22 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
15 sqrt.s $f0,$f1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/Transforms/SimplifyCFG/
speculate-math.ll 3 declare float @llvm.sqrt.f32(float) nounwind readonly
15 %0 = tail call float @llvm.sqrt.f32(float %a) nounwind readnone
  /external/pdfium/core/include/thirdparties/freetype/freetype/internal/
ftcalc.h 42 /* The result of `sqrt(x)'. */
143 * Return sqrt(x*x+y*y), which is the same as `FT_Vector_Length' but uses
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
ftcalc.h 42 /* The result of `sqrt(x)'. */
143 * Return sqrt(x*x+y*y), which is the same as `FT_Vector_Length' but uses
  /external/skia/experimental/Intersection/
LineParameters.h 20 // divide the result of xxxDistance() by sqrt(normalSquared())
55 double normal = sqrt(normalSquared());
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
transform.c 62 fact = 0.5 / sqrt(FRAMESAMPLES_HALF);
123 fact = sqrt(FRAMESAMPLES_HALF);
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
threshold.rs 39 // g(x) = ( 1 / sqrt( 2 * pi ) * sigma) * e ^ ( -x^2 / 2 * sigma^2 )
54 float coeff1 = 1.0f / (sqrt( 2.0f * pi ) * sigma);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
threshold.fs 39 // g(x) = ( 1 / sqrt( 2 * pi ) * sigma) * e ^ ( -x^2 / 2 * sigma^2 )
54 float coeff1 = 1.0f / (sqrt( 2.0f * pi ) * sigma);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
threshold.rs 39 // g(x) = ( 1 / sqrt( 2 * pi ) * sigma) * e ^ ( -x^2 / 2 * sigma^2 )
54 float coeff1 = 1.0f / (sqrt( 2.0f * pi ) * sigma);
  /frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
yuv.rs 107 float range = 1.30f - sqrt(vignetteScale) * 0.7f;
108 float lumen = vignetteShade / (1.0f + exp((sqrt(f) - range) * slope)) + (1.0f - vignetteShade);
  /libcore/luni/src/main/native/
java_lang_Math.cpp 103 return sqrt(a);
144 NATIVE_METHOD(Math, sqrt, "!(D)D"),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/resize_policy/
cc_hash_max_collision_check_resize_trigger_imp.hpp 157 // max_col <-- \sqrt{2 load \ln( 2 m \ln( m ) ) }
159 m_max_col = size_type(std::ceil(std::sqrt(2 * m_load * std::log(ln_arg))));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/resize_policy/
cc_hash_max_collision_check_resize_trigger_imp.hpp 157 // max_col <-- \sqrt{2 load \ln( 2 m \ln( m ) ) }
159 m_max_col = size_type(std::ceil(std::sqrt(2 * m_load * std::log(ln_arg))));

Completed in 596 milliseconds

<<11121314151617181920>>