HomeSort by relevance Sort by last modified time
    Searched refs:powf (Results 1 - 25 of 157) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/CodeGen/
le32-libcall-pow.c 8 float powf(float, float);
14 // CHECK: call float @powf
15 float l0 = powf(a0, a0);
24 // CHECK: declare float @powf(float, float)
libcalls.c 39 // CHECK-YES: call float @powf
41 float l0 = powf(a0, a0);
52 // CHECK-YES: declare float @powf(float, float)
libcall-declarations.c 38 float powf(float, float);
269 F(nanf), F(nanl), F(pow), F(powf), F(powl),
337 // CHECK-NOERRNO: declare float @powf(float, float) [[NUW]]
  /external/mesa3d/src/gallium/targets/dri-vmwgfx/
vmw_powf.c 2 * Powf may leave an unresolved symbol pointing to a libstdc++.so powf.
4 * replace the powf function with calls to expf and logf.
11 extern float powf(float x, float y);
13 float powf(float x, float y) { function
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_srgb.h 66 return float_to_ubyte(1.055f * powf(x, 0.41666f) - 0.055f);
  /hardware/bsp/intel/peripheral/libupm/src/mg811/
mg811.cxx 87 return powf(10.0, ((val/dcGain)-m_zeroPointValue) /
  /development/ndk/sources/android/ndk_helper/
interpolator.cpp 168 return (c * powf( 2, (10 * (t / d - 1)) ) + b);
175 return (c * (-powf( 2, -10 * t / d ) + 1) + b);
  /external/webrtc/webrtc/tools/agc/
test_utils.cc 26 return powf(10.0f, db / 20.0f);
  /packages/inputmethods/LatinIME/native/jni/src/utils/
autocorrection_threshold_utils.cpp 52 // := powf(mTypedLetterMultiplier (this is defined 2),
64 // So, maximum original score is powf(2, min(before.length(), after.length())) * 255 * 2 * 1.2
68 // So, we can normalize original score by dividing powf(2, min(b.l(),a.l())) * 255 * 2.
102 * powf(static_cast<float>(TYPED_LETTER_MULTIPLIER),
  /external/llvm/lib/Support/Windows/
explicit_symbols.inc 86 INLINE_DEF_FLOAT_SYMBOL(powf, 2)
  /external/skia/tests/
SRGBReadWritePixelsTest.cpp 22 return powf((srgb + 0.055f) / 1.055f, 2.4f);
31 return 1.055f * powf(linear, 1.f / 2.4f) - 0.055f;
  /external/opencv3/3rdparty/openexr/Imath/
ImathMath.h 140 static float pow (float x, float y) {return ::powf (x, y);}
  /external/skia/include/private/
SkFloatingPoint.h 29 return powf(base, exp);
  /external/skia/src/effects/
SkTableMaskFilter.cpp 93 // float ee = powf(x, g) * 255;
94 table[i] = SkTPin(sk_float_round2int(powf(x, g) * 255), 0, 255);
  /hardware/qcom/display/msm8226/liboverlay/
overlayUtils.cpp 290 horDscale = powf(2.0f, ceilf(log2f(horDscale)));
291 verDscale = powf(2.0f, ceilf(log2f(verDscale)));
  /hardware/qcom/display/msm8909/liboverlay/
overlayUtils.cpp 261 horDscale = powf(2.0f, ceilf(log2f(horDscale)));
262 verDscale = powf(2.0f, ceilf(log2f(verDscale)));
  /hardware/qcom/display/msm8994/liboverlay/
overlayUtils.cpp 282 horDscale = powf(2.0f, ceilf(log2f(horDscale)));
283 verDscale = powf(2.0f, ceilf(log2f(verDscale)));
  /external/mesa3d/src/mesa/main/
imports.h 136 #define powf(x,y) ((float) pow(x,y)) macro
149 static inline float exp2f(float x) { return powf(2.0f, x); }
  /external/mesa3d/src/mesa/tnl/
t_rasterpos.c 168 GLfloat spot = powf(PV_dot_dir, light->SpotExponent);
219 spec_coef = powf(n_dot_h, shine);
  /external/webrtc/webrtc/modules/video_coding/
media_opt_util.cc 289 const float resolnFac = 1.0 / powf(spatialSizeToRef, 0.3f);
430 float frameRateRatio = powf(1 / 2.0, parameters->numLayers - 1);
  /hardware/qcom/display/msm8084/liboverlay/
overlayUtils.cpp 294 horDscale = powf(2.0f, ceilf(log2f(horDscale)));
295 verDscale = powf(2.0f, ceilf(log2f(verDscale)));
  /bionic/libm/include/
math.h 284 float powf(float, float);
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp 145 EXPORT_F32_FN_F32_F32(powf)
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
forgetting_curve_utils.cpp 205 * powf(initialProbability / endProbability,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
math-finite.h 266 extern float __REDIRECT_NTH (powf, (float, float), __powf_finite);

Completed in 827 milliseconds

1 2 3 4 5 6 7