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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/mesa/src/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/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)
  /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/chromium_org/third_party/WebKit/Source/platform/audio/
AudioUtilities.cpp 40 return powf(10, 0.05f * decibels);
DynamicsCompressorKernel.cpp 236 fullRangeMakeupGain = powf(fullRangeMakeupGain, 0.6f);
356 envelopeRate = 1 - powf(x, 1 / attackFrames);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_srgb.h 66 return float_to_ubyte(1.055f * powf(x, 0.41666f) - 0.055f);
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_srgb.h 66 return float_to_ubyte(1.055f * powf(x, 0.41666f) - 0.055f);
  /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);
  /frameworks/base/core/jni/
android_util_FloatMath.cpp 33 static float PowF(JNIEnv* env, jobject clazz, float x, float y) {
34 return powf(x, y);
49 {"pow", "(FF)F", (void*) MathUtilsGlue::PowF},
  /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/chromium_org/media/base/
vector_math_unittest.cc 302 .HasExpectedResult(powf(0.75, 1.0f), 0.0f),
304 .HasExpectedResult(powf(0.75, 2.0f), 0.0f),
306 .HasExpectedResult(powf(0.75, 3.0f), 0.0f),
308 .HasExpectedResult(powf(0.75, 12.0f), 0.0f),
310 .HasExpectedResult(powf(0.75, 13.0f), 0.0f),
312 .HasExpectedResult(powf(0.75, 14.0f), 0.0f),
314 .HasExpectedResult(powf(0.75, 15.0f), 0.0f),
  /external/chromium_org/third_party/skia/tools/skpdiff/
SkPMetric.cpp 161 float a = 440.0f * powf(1.0f + 0.7f / luminance, -0.2f);
162 float b = 0.3f * powf(1.0f + 100.0f / luminance, 0.15f);
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/skia/tools/skpdiff/
SkPMetric.cpp 161 float a = 440.0f * powf(1.0f + 0.7f / luminance, -0.2f);
162 float b = 0.3f * powf(1.0f + 100.0f / luminance, 0.15f);
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/chromium_org/third_party/WebKit/Source/platform/graphics/
ColorSpace.cpp 66 color = (powf(color, 1.0f / 2.4f) * 1.055f) - 0.055f;
  /external/pixman/demos/
srgb-test.c 27 return 1.055f * powf (linear, 1.0f/2.4f) - 0.055f;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OscillatorNode.cpp 197 detuneValues[i] = powf(2, detuneValues[i]); // FIXME: converting to expf() will be faster.
207 float detuneScale = powf(2, detune / 1200);
278 float detuneScale = powf(2, detune / 1200);
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp 151 EXPORT_F32_FN_F32_F32(powf)
277 { "_Z3powff", (void *)&powf, true },
278 { "powf", (void *)&powf, true },
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
SpotLightSource.cpp 86 lightStrength = powf(-cosineOfAngle, m_specularExponent);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGInlineText.cpp 192 float distance = powf(fragmentRect.x() - absolutePoint.x(), 2) +
193 powf(fragmentRect.y() + fragmentRect.height() / 2 - absolutePoint.y(), 2);
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 29 return powf(base, exp);
  /external/chromium_org/third_party/skia/src/effects/
SkTableMaskFilter.cpp 100 // float ee = powf(x, g) * 255;
101 table[i] = SkPin32(sk_float_round2int(powf(x, g) * 255), 0, 255);
  /external/skia/include/core/
SkFloatingPoint.h 29 return powf(base, exp);
  /external/skia/src/effects/
SkTableMaskFilter.cpp 92 // float ee = powf(x, g) * 255;
93 table[i] = SkPin32(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)));

Completed in 587 milliseconds

1 2 3 4 5 6 7 8 910