/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
special_function_util.h | 77 /// Constant @f$ 2 / \sqrt(\pi) @f$. 80 /// Constant @f$ \sqrt(2) @f$. 83 /// Constant @f$ \sqrt(3) @f$. 86 /// Constant @f$ \sqrt(\pi/2) @f$. 89 /// Constant @f$ 1 / sqrt(2) @f$.
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
special_function_util.h | 77 /// Constant @f$ 2 / \sqrt(\pi) @f$. 80 /// Constant @f$ \sqrt(2) @f$. 83 /// Constant @f$ \sqrt(3) @f$. 86 /// Constant @f$ \sqrt(\pi/2) @f$. 89 /// Constant @f$ 1 / sqrt(2) @f$.
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1/ |
special_function_util.h | 77 /// Constant @f$ 2 / \sqrt(\pi) @f$. 80 /// Constant @f$ \sqrt(2) @f$. 83 /// Constant @f$ \sqrt(3) @f$. 86 /// Constant @f$ \sqrt(\pi/2) @f$. 89 /// Constant @f$ 1 / sqrt(2) @f$.
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/ |
special_function_util.h | 77 /// Constant @f$ 2 / \sqrt(\pi) @f$. 80 /// Constant @f$ \sqrt(2) @f$. 83 /// Constant @f$ \sqrt(3) @f$. 86 /// Constant @f$ \sqrt(\pi/2) @f$. 89 /// Constant @f$ 1 / sqrt(2) @f$.
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/ |
special_function_util.h | 77 /// Constant @f$ 2 / \sqrt(\pi) @f$. 80 /// Constant @f$ \sqrt(2) @f$. 83 /// Constant @f$ \sqrt(3) @f$. 86 /// Constant @f$ \sqrt(\pi/2) @f$. 89 /// Constant @f$ 1 / sqrt(2) @f$.
|
/external/guava/guava-tests/test/com/google/common/math/ |
BigIntegerMathTest.java | 54 assertEquals(BigIntegerMath.sqrt( 250 assertEquals(ZERO, BigIntegerMath.sqrt(ZERO, mode)); 258 BigIntegerMath.sqrt(x, mode); 268 BigInteger result = BigIntegerMath.sqrt(x, mode); 279 BigInteger result = BigIntegerMath.sqrt(x, mode); 287 // Relies on the correctness of sqrt(BigInteger, FLOOR). 290 BigInteger floor = BigIntegerMath.sqrt(x, FLOOR); 294 assertEquals(floor, BigIntegerMath.sqrt(x, UNNECESSARY)); 304 BigInteger result = BigIntegerMath.sqrt(x, HALF_UP); 307 // sqrt(x) < result + 0.5, so 4 * x < (result + 0.5)^2 * [all...] |
IntMathTest.java | 50 BigIntegerMath.sqrt(BigInteger.ZERO.setBit(2 * Integer.SIZE - 1), FLOOR).intValue(), 66 BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * i + 1), FLOOR).longValue()); 84 @GwtIncompatible("sqrt") 86 assertEquals(IntMath.sqrt(Integer.MAX_VALUE, FLOOR), IntMath.FLOOR_SQRT_MAX_INT); 200 // Simple test to cover sqrt(0) for all types and all modes. 201 @GwtIncompatible("sqrt") 204 assertEquals(0, IntMath.sqrt(0, mode)); 208 @GwtIncompatible("sqrt") 213 IntMath.sqrt(x, mode); 220 /* Relies on the correctness of BigIntegerMath.sqrt for all modes except UNNECESSARY. * [all...] |
/external/llvm/test/CodeGen/XCore/ |
float-intrinsics.ll | 11 declare double @llvm.sqrt.f64(double) 157 define double @sqrt(double %F) { 158 ; CHECK: sqrt: 159 ; CHECK: bl sqrt 160 %result = call double @llvm.sqrt.f64(double %F) 164 declare float @llvm.sqrt.f32(float) 169 %result = call float @llvm.sqrt.f32(float %F)
|
/external/webrtc/src/common_audio/signal_processing/ |
spl_sqrt.c | 81 Example of how the algorithm works, with ut=sqrt(in), and 88 ut=t*(1/sqrt(2))*512 97 ut=t*(1/sqrt(2)) 119 ut=t*(1/sqrt(2)) 143 return (WebRtc_Word32)0; // sqrt(0) = 0 162 A = WebRtcSpl_SqrtLocal(A); // A = sqrt(A) 169 A = WEBRTC_SPL_MUL_16_16(k_sqrt_2, t16) * 2; // A = 1/sqrt(2)*t16
|
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/ |
eval.pass.cpp | 59 double dev = std::sqrt(var); 67 (std::sqrt(x_var)*x_var); 69 4*x_skew*x_var*sqrt(x_var)*x_mean - 103 double dev = std::sqrt(var); 111 (std::sqrt(x_var)*x_var); 113 4*x_skew*x_var*sqrt(x_var)*x_mean - 147 double dev = std::sqrt(var); 155 (std::sqrt(x_var)*x_var); 157 4*x_skew*x_var*sqrt(x_var)*x_mean -
|
eval_param.pass.cpp | 60 double dev = std::sqrt(var); 68 (std::sqrt(x_var)*x_var); 70 4*x_skew*x_var*sqrt(x_var)*x_mean - 105 double dev = std::sqrt(var); 113 (std::sqrt(x_var)*x_var); 115 4*x_skew*x_var*sqrt(x_var)*x_mean - 150 double dev = std::sqrt(var); 158 (std::sqrt(x_var)*x_var); 160 4*x_skew*x_var*sqrt(x_var)*x_mean -
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_asinh.c | 19 * asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ] 23 * := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else 24 * := sign(x)*log1p(|x| + x^2/(1 + sqrt(1+x^2)))
|
/external/stlport/test/unit/ |
valarray_test.cpp | 59 tmp = sqrt(darray); 85 tmp = sqrt(farray); 112 tmp = sqrt(ldarray);
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
fisheye.rsh | 38 const float bound = sqrt(bound2); 41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2)); 52 const float radian = M_PI_2 - atan((alpha * sqrt(radius2 - dist2)) * inv_dist);
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
fisheye.rsh | 38 const float bound = sqrt(bound2); 41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2)); 52 const float radian = M_PI_2 - atan((alpha * sqrt(radius2 - dist2)) * inv_dist);
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
fisheye.rsh | 38 const float bound = sqrt(bound2); 41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2)); 52 const float radian = M_PI_2 - atan((alpha * sqrt(radius2 - dist2)) * inv_dist);
|
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/ |
eval.pass.cpp | 59 double dev = std::sqrt(var); 65 double x_skew = (2 - d.p()) / std::sqrt((1 - d.p())); 99 double dev = std::sqrt(var); 105 double x_skew = (2 - d.p()) / std::sqrt((1 - d.p())); 139 double dev = std::sqrt(var); 145 double x_skew = (2 - d.p()) / std::sqrt((1 - d.p())); 179 double dev = std::sqrt(var); 185 double x_skew = (2 - d.p()) / std::sqrt((1 - d.p())); 219 double dev = std::sqrt(var); 225 double x_skew = (2 - d.p()) / std::sqrt((1 - d.p())) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/ |
eval.pass.cpp | 59 double dev = std::sqrt(var); 65 double x_skew = (2 - d.p()) / std::sqrt(d.k() * (1 - d.p())); 99 double dev = std::sqrt(var); 105 double x_skew = (2 - d.p()) / std::sqrt(d.k() * (1 - d.p())); 139 double dev = std::sqrt(var); 145 double x_skew = (2 - d.p()) / std::sqrt(d.k() * (1 - d.p())); 179 double dev = std::sqrt(var); 185 double x_skew = (2 - d.p()) / std::sqrt(d.k() * (1 - d.p())); 217 double dev = std::sqrt(var); 223 double x_skew = (2 - d.p()) / std::sqrt(d.k() * (1 - d.p())) [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
valarray_test.cpp | 59 tmp = sqrt(darray); 85 tmp = sqrt(farray); 112 tmp = sqrt(ldarray);
|
/ndk/tests/device/test-stlport/unit/ |
valarray_test.cpp | 59 tmp = sqrt(darray); 85 tmp = sqrt(farray); 112 tmp = sqrt(ldarray);
|
/external/libvorbis/lib/ |
lookup.c | 34 /* interpolated 1./sqrt(p) where .5 <= p < 1. */ 41 /* interpolated 1./sqrt(p) where .5 <= p < 1. */ 58 /* interpolated 1./sqrt(p) where .5 <= a < 1. (.100000... to .111111...) in 70 if(e&1)val=(val*5792)>>13; /* multiply val by 1/sqrt(2) */
|
/external/llvm/test/Feature/ |
intrinsics.ll | 35 declare float @llvm.sqrt.f32(float) 37 declare double @llvm.sqrt.f64(double) 44 call float @llvm.sqrt.f32( float 5.000000e+00 ) ; <float>:3 [#uses=0] 45 call double @llvm.sqrt.f64( double 6.000000e+00 ) ; <double>:4 [#uses=0]
|
/external/skia/legacy/src/core/ |
SkFloat.h | 51 void sqrt() { fPacked = Sqrt(fPacked); } function in class:SkFloat 52 void setSqrt(const SkFloat& a) { fPacked = Sqrt(a.fPacked); } 104 static int32_t Sqrt(int32_t);
|
/external/skia/src/core/ |
SkFloat.h | 51 void sqrt() { fPacked = Sqrt(fPacked); } function in class:SkFloat 52 void setSqrt(const SkFloat& a) { fPacked = Sqrt(a.fPacked); } 104 static int32_t Sqrt(int32_t);
|
/external/valgrind/main/VEX/test/ |
fpspeed.c | 23 s += (a1[i] - a2[i]) * (a1[i] + a2[i]) - sqrt(r + 1.0);
|