/external/llvm/test/Transforms/InstCombine/ |
D | sqrt.ll | 8 ; CHECK: sqrtf( 23 ; CHECK: sqrtf( 33 ; Can't fold (fptrunc (sqrt (fpext x))) -> (sqrtf x) since there is another 39 ; CHECK-NOT: sqrtf(
|
D | fold-sqrt-sqrtf.ll | 4 ; Instcombine tries to fold (fptrunc (sqrt (fpext x))) -> (sqrtf x), but this 5 ; shouldn't fold when sqrtf isn't available.
|
D | win-math.ll | 216 ; WIN32-NOT: float @sqrtf 219 ; WIN64: float @sqrtf 222 ; MINGW32: float @sqrtf 225 ; MINGW64: float @sqrtf
|
/external/clang/test/CodeGen/ |
D | 2009-09-24-SqrtErrno.c | 5 float sqrtf(float x); 11 return sqrtf(X); in foo()
|
D | 2005-07-20-SqrtNoErrno.c | 4 float sqrtf(float x); 9 return sqrtf(X); in foo()
|
D | libcall-declarations.c | 70 float sqrtf(float); 86 sqrtf, tan, tanl, tanf, trunc, truncl, truncf
|
D | libcalls.c | 13 float l0 = sqrtf(a0); in test_sqrt()
|
/external/llvm/test/CodeGen/Mips/ |
D | optimize-fp-math.ll | 13 %call = tail call float @sqrtf(float %a) 17 declare float @sqrtf(float)
|
/external/llvm/test/CodeGen/X86/ |
D | 2012-10-02-DAGCycle.ll | 35 %call.i.i.i = tail call float @sqrtf(float 0.000000e+00) nounwind readnone 52 declare float @sqrtf(float) nounwind readnone
|
/external/llvm/test/CodeGen/XCore/ |
D | float-intrinsics.ll | 166 define float @sqrtf(float %F) { 167 ; CHECK-LABEL: sqrtf: 168 ; CHECK: bl sqrtf
|
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
D | FloatSize.cpp | 50 return sqrtf(diagonalLengthSquared()); in diagonalLength()
|
D | FloatPoint.cpp | 72 return sqrtf(lengthSquared()); in length()
|
/external/llvm/test/Transforms/ConstProp/ |
D | calls.ll | 92 ; FNOBUILTIN: %1 = call float @sqrtf(float 3.000000e+00) 93 %1 = call float @sqrtf(float 3.000000e+00) 96 declare float @sqrtf(float)
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | ColorDistance.cpp | 71 return sqrtf(m_redDiff * m_redDiff + m_blueDiff * m_blueDiff + m_greenDiff * m_greenDiff); in distance()
|
D | SVGLengthContext.cpp | 175 return value / sqrtf(viewportSize.diagonalLengthSquared() / 2) * 100; in convertValueFromUserUnitsToPercentage() 196 return value * sqrtf(viewportSize.diagonalLengthSquared() / 2); in convertValueFromPercentageToUserUnits()
|
D | SVGPathParser.cpp | 430 rx *= sqrtf(radiiScale); in decomposeArcToCubic() 431 ry *= sqrtf(radiiScale); in decomposeArcToCubic() 445 float scaleFactor = sqrtf(scaleFactorSquared); in decomposeArcToCubic()
|
/external/mesa3d/src/mesa/main/ |
D | imports.h | 139 #define sqrtf(f) ((float) sqrt(f)) macro 151 static inline float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); } in asinhf() 152 static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); } in acoshf()
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | imports.h | 139 #define sqrtf(f) ((float) sqrt(f)) macro 151 static inline float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); } in asinhf() 152 static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); } in acoshf()
|
/external/pixman/ |
D | config.h.in | 172 /* Define to sqrt if you do not have the `sqrtf' function. */ 173 #undef sqrtf
|
/external/llvm/include/llvm/Target/ |
D | TargetLibraryInfo.h | 503 sqrtf, enumerator 691 case LibFunc::sqrt: case LibFunc::sqrtf: case LibFunc::sqrtl: in hasOptimizedCodeGen()
|
/external/stlport/stlport/stl/config/ |
D | _como.h | 127 # define sqrtf sqrt macro
|
/external/llvm/test/CodeGen/ARM/ |
D | 2009-11-13-VRRewriterCrash.ll | 44 %19 = call arm_aapcs_vfpcc float @sqrtf(float %18) readnone ; <float> [#uses=2] 113 declare arm_aapcs_vfpcc float @sqrtf(float) readnone
|
D | 2009-11-13-ScavengerAssert2.ll | 54 %29 = call arm_aapcs_vfpcc float @sqrtf(float %28) readnone ; <float> [#uses=1] 123 declare arm_aapcs_vfpcc float @sqrtf(float) readnone
|
/external/webrtc/src/modules/audio_processing/aec/ |
D | aec_core.c | 271 absEf = sqrtf(ef[0][i] * ef[0][i] + ef[1][i] * ef[1][i]); in ScaleErrorSignal() 707 abs_far_spectrum[i] = sqrtf(far_spectrum); in ProcessBlock() 712 abs_near_spectrum[i] = sqrtf(near_spectrum); in ProcessBlock() 1228 noise = sqrtf(noisePow[i]); in ComfortNoise() 1236 tmp = sqrtf(WEBRTC_SPL_MAX(1 - lambda[i] * lambda[i], 0)); in ComfortNoise() 1254 noiseAvg += sqrtf(noisePow[i]); in ComfortNoise() 1264 tmpAvg += sqrtf(WEBRTC_SPL_MAX(1 - lambda[i] * lambda[i], 0)); in ComfortNoise()
|
/external/chromium_org/native_client_sdk/src/examples/api/mouse_cursor/ |
D | mouse_cursor.cc | 85 float dist = sqrtf(dx * dx + dy * dy); in DrawCircle()
|