/external/llvm/test/Transforms/InstCombine/ |
D | pow-1.ll | 16 declare float @powf(float, float) nounwind readonly 23 %retval = call float @powf(float 1.0, float %x) 39 %retval = call float @powf(float 2.0, float %x) 57 %retval = call float @powf(float %x, float 0.0) 73 %retval = call float @powf(float %x, float 0.5) 97 %retval = call float @powf(float 0xFFF0000000000000, float 0.5) 113 %retval = call float @powf(float %x, float 1.0) 129 %retval = call float @powf(float %x, float 2.0) 147 %retval = call float @powf(float %x, float -1.0) 177 %retval = call float @powf(float 10.0, float %x) [all …]
|
D | win-math.ll | 182 ; WIN32-NOT: float @powf 276 declare float @powf(float, float) 281 ; WIN32: float @powf 284 ; WIN64: float @powf 288 ; MINGW32-NOT: float @powf 292 ; MINGW64-NOT: float @powf 293 %1 = call float @powf(float %x, float 0.5)
|
/external/mesa3d/src/gallium/targets/dri-vmwgfx/ |
D | vmw_powf.c | 11 extern float powf(float x, float y); 13 float powf(float x, float y) { in powf() function
|
/external/clang/test/CodeGen/ |
D | le32-libcall-pow.c | 8 float powf(float, float); 15 float l0 = powf(a0, a0); in test_pow()
|
D | libcalls.c | 41 float l0 = powf(a0, a0); in test_pow()
|
D | libcall-declarations.c | 38 float powf(float, float); 269 F(nanf), F(nanl), F(pow), F(powf), F(powl),
|
/external/llvm/test/CodeGen/XCore/ |
D | float-intrinsics.ll | 118 define float @powf(float %F, float %power) { 119 ; CHECK-LABEL: powf: 120 ; CHECK: bl powf
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format_srgb.h | 66 return float_to_ubyte(1.055f * powf(x, 0.41666f) - 0.055f); in util_format_linear_float_to_srgb_8unorm()
|
/external/llvm/test/CodeGen/ARM/ |
D | 2011-11-29-128bitArithmetics.ll | 224 ; CHECK: bl {{.*}}powf 227 ; CHECK: bl {{.*}}powf 230 ; CHECK: bl {{.*}}powf 233 ; CHECK: bl {{.*}}powf
|
/external/skia/tests/ |
D | SRGBReadWritePixelsTest.cpp | 22 return powf((srgb + 0.055f) / 1.055f, 2.4f); in srgb_to_linear() 31 return 1.055f * powf(linear, 1.f / 2.4f) - 0.055f; in linear_to_srgb()
|
/external/webrtc/webrtc/tools/agc/ |
D | test_utils.cc | 26 return powf(10.0f, db / 20.0f); in Db2Linear()
|
/external/llvm/lib/Support/Windows/ |
D | explicit_symbols.inc | 86 INLINE_DEF_FLOAT_SYMBOL(powf, 2)
|
/external/mesa3d/src/mesa/tnl/ |
D | t_rasterpos.c | 168 GLfloat spot = powf(PV_dot_dir, light->SpotExponent); in shade_rastpos() 219 spec_coef = powf(n_dot_h, shine); in shade_rastpos()
|
D | t_vb_lighttmp.h | 150 GLfloat spot = powf(PV_dot_dir, light->SpotExponent); in TAG() 328 GLfloat spot = powf(PV_dot_dir, light->SpotExponent); in TAG()
|
/external/skia/src/effects/ |
D | SkTableMaskFilter.cpp | 94 table[i] = SkTPin(sk_float_round2int(powf(x, g) * 255), 0, 255); in MakeGammaTable()
|
/external/webrtc/webrtc/modules/video_coding/ |
D | media_opt_util.cc | 289 const float resolnFac = 1.0 / powf(spatialSizeToRef, 0.3f); in ProtectionFactor() 430 float frameRateRatio = powf(1 / 2.0, parameters->numLayers - 1); in BitsPerFrame()
|
/external/skia/include/private/ |
D | SkFloatingPoint.h | 29 return powf(base, exp); in sk_float_pow()
|
/external/bison/darwin-lib/ |
D | math.h | 1934 # undef powf 1935 _GL_FUNCDECL_SYS (powf, float, (float x, float y)); 1937 _GL_CXXALIAS_SYS (powf, float, (float x, float y)); 1938 _GL_CXXALIASWARN (powf); 1940 # undef powf 1942 _GL_WARN_ON_USE (powf, "powf is unportable - "
|
/external/bison/lib/ |
D | math.in.h | 1622 # undef powf 1623 _GL_FUNCDECL_SYS (powf, float, (float x, float y)); 1625 _GL_CXXALIAS_SYS (powf, float, (float x, float y)); 1626 _GL_CXXALIASWARN (powf); 1628 # undef powf 1630 _GL_WARN_ON_USE (powf, "powf is unportable - "
|
/external/bison/linux-lib/ |
D | math.h | 1934 # undef powf 1935 _GL_FUNCDECL_SYS (powf, float, (float x, float y)); 1937 _GL_CXXALIAS_SYS (powf, float, (float x, float y)); 1938 _GL_CXXALIASWARN (powf); 1940 # undef powf 1942 _GL_WARN_ON_USE (powf, "powf is unportable - "
|
/external/mesa3d/src/mesa/main/ |
D | imports.h | 136 #define powf(x,y) ((float) pow(x,y)) macro 149 static inline float exp2f(float x) { return powf(2.0f, x); } in exp2f()
|
/external/opencv3/3rdparty/openexr/Imath/ |
D | ImathMath.h | 140 static float pow (float x, float y) {return ::powf (x, y);}
|
/external/llvm/test/Transforms/ConstProp/ |
D | calls.ll | 39 declare float @powf(float, float) 153 %31 = call float @powf(float 3.000000e+00, float 4.000000e+00)
|
/external/llvm/test/CodeGen/Thumb2/ |
D | float-intrinsics-float.ll | 47 ; SOFT: bl powf 48 ; HARD: b powf
|
/external/pdfium/core/include/fxcrt/ |
D | fx_system.h | 240 #define FXSYS_pow(a, b) (FX_FLOAT) powf(a, b)
|