HomeSort by relevance Sort by last modified time
    Searched full:sqrtf (Results 376 - 400 of 992) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_mips.c 266 tmp = sqrtf(WEBRTC_SPL_MAX(1 - lambda[PART_LEN] * lambda[PART_LEN], 0));
286 noiseAvg += sqrtf(noisePow[i]);
296 tmpAvg += sqrtf(WEBRTC_SPL_MAX(1 - lambda[i] * lambda[i], 0));
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/libcxx/include/
cmath 127 float sqrtf(float x);
1003 using ::sqrtf;
1007 inline _LIBCPP_INLINE_VISIBILITY float sqrt(float __x) _NOEXCEPT {return sqrtf(__x);}
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/include/
cmath 127 float sqrtf(float x);
1003 using ::sqrtf;
1007 inline _LIBCPP_INLINE_VISIBILITY float sqrt(float __x) _NOEXCEPT {return sqrtf(__x);}
    [all...]
  /development/ndk/platforms/android-13/include/
math.h 333 float sqrtf(float);
  /development/ndk/platforms/android-18/include/
math.h 335 float sqrtf(float);
  /development/ndk/platforms/android-21/include/
math.h 330 float sqrtf(float);
  /development/ndk/platforms/android-9/include/
math.h 332 float sqrtf(float);
  /device/google/contexthub/firmware/os/drivers/window_orientation/
window_orientation.c 449 magnitude = sqrtf(x * x + y * y + z * z);
  /external/eigen/unsupported/test/
cxx11_tensor_reduction.cpp 297 VERIFY_IS_APPROX(result(), sqrtf(sum));
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 250 case LibFunc::sqrt: case LibFunc::sqrtf: case LibFunc::sqrtl:
  /external/llvm/test/Transforms/InstCombine/
double-float-shrink-1.ll 292 ; CHECK: call float @sqrtf(float %f)
  /external/webrtc/webrtc/modules/audio_processing/transient/
transient_suppressor.cc 126 size_t ip_length = 2 + sqrtf(analysis_length_);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBlur.cpp 79 float coeff1 = 1.0f / (sqrtf(2.0f * pi) * sigma);
  /frameworks/rs/
rsMatrix4x4.cpp 215 const float recipLen = 1.f / sqrtf(len);
  /hardware/qcom/display/msm8084/liboverlay/
overlayUtils.cpp 268 uint32_t dscale = (int)sqrtf(fDscale);
  /hardware/qcom/display/msm8226/liboverlay/
overlayUtils.cpp 262 uint32_t dscale = (int)sqrtf(fDscale);
  /hardware/qcom/display/msm8960/liboverlay/
overlayUtils.cpp 196 float fDscale = sqrtf((float)(src_w * src_h) / (float)(dst_w * dst_h)) +
  /prebuilts/sdk/renderscript/lib/arm/
libblasV8.so 
  /external/llvm/test/Transforms/InferFunctionAttrs/
annotate.ll 667 ; CHECK: declare float @sqrtf(float)
668 declare float @sqrtf(float)
no-proto.ll 651 ; CHECK: declare void @sqrtf(...)
652 declare void @sqrtf(...)
  /external/mesa3d/src/compiler/glsl/
ir_expression_operation.py 424 operation("rsq", 1, source_types=real_types, c_expression={'f': "1.0F / sqrtf({src0})", 'd': "1.0 / sqrt({src0})"}),
425 operation("sqrt", 1, source_types=real_types, c_expression={'f': "sqrtf({src0})", 'd': "sqrt({src0})"}),
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_opcodes.py 164 unop("frsq", tfloat, "bit_size == 64 ? 1.0 / sqrt(src0) : 1.0f / sqrtf(src0)")
165 unop("fsqrt", tfloat, "bit_size == 64 ? sqrt(src0) : sqrtf(src0)")
  /external/mesa3d/src/mesa/main/
light.c 1041 ctx->_ModelViewInvScale = 1.0f / sqrtf(f);
1043 ctx->_ModelViewInvScale = sqrtf(f);
    [all...]
  /external/skia/src/jumper/
SkJumper_vectors.h 36 SI F rsqrt (F v) { return 1.0f / sqrtf(v); }
37 SI F sqrt_(F v) { return sqrtf(v); }
  /external/llvm/lib/Analysis/
TargetLibraryInfo.cpp 219 TLI.setUnavailable(LibFunc::sqrtf);
    [all...]

Completed in 708 milliseconds

<<11121314151617181920>>