/external/llvm/test/Transforms/InstCombine/ |
D | pow-1.ll | 14 declare float @powf(float, float) nounwind readonly 21 %retval = call float @powf(float 1.0, float %x) 37 %retval = call float @powf(float 2.0, float %x) 55 %retval = call float @powf(float %x, float 0.0) 71 %retval = call float @powf(float %x, float 0.5) 95 %retval = call float @powf(float 0xFFF0000000000000, float 0.5) 111 %retval = call float @powf(float %x, float 1.0) 127 %retval = call float @powf(float %x, float 2.0) 145 %retval = call float @powf(float %x, float -1.0) 175 %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/skia/tools/skpdiff/ |
D | SkPMetric.cpp | 161 float a = 440.0f * powf(1.0f + 0.7f / luminance, -0.2f); in contrast_sensitivity() 162 float b = 0.3f * powf(1.0f + 100.0f / luminance, 0.15f); in contrast_sensitivity() 177 float x = powf(392.498f * contrast, 0.7f); 178 x = powf(0.0153f * x, 4.0f); 179 return powf(1.0f + x, 0.25f); 189 x = powf(0.405f * logLum + 1.6f, 2.18) - 2.86f; 193 x = powf(0.249f * logLum + 0.65f, 2.7f) - 0.72f; 197 return powf(10.0f, x);
|
/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()
|
D | u_math.h | 88 static INLINE float powf( float f, float g ) in powf() function
|
/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/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()
|
D | t_vb_light.c | 282 return powf(dp, tab->shininess); in lookup_shininess()
|
/external/skia/src/effects/ |
D | SkTableMaskFilter.cpp | 94 table[i] = SkPin32(sk_float_round2int(powf(x, g) * 255), 0, 255); in MakeGammaTable()
|
/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/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/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/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/skia/include/core/ |
D | SkFloatingPoint.h | 29 return powf(base, exp); in sk_float_pow()
|
/external/llvm/test/CodeGen/Thumb2/ |
D | float-intrinsics-float.ll | 47 ; SOFT: bl powf 48 ; HARD: b powf
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | VectorUtils.h | 195 case LibFunc::powf: in getIntrinsicIDForCall()
|
/external/pdfium/core/include/fxcrt/ |
D | fx_system.h | 269 #define FXSYS_pow(a, b) (FX_FLOAT)powf(a, b)
|
/external/ltrace/etc/ |
D | libm.so.conf | 149 float powf(float, float);
|