Home
last modified time | relevance | path

Searched refs:asinhf (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/mesa/main/
Dimports.h143 #define asinhf(f) ((float) asinh(f)) macro
151 static inline float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); } in asinhf() function
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dimports.h143 #define asinhf(f) ((float) asinh(f)) macro
151 static inline float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); } in asinhf() function
/external/llvm/include/llvm/Target/
DTargetLibraryInfo.h99 asinhf, enumerator
/external/llvm/lib/Target/
DTargetLibraryInfo.cpp408 TLI.setUnavailable(LibFunc::asinhf); in initialize()
/external/llvm/test/Transforms/InstCombine/
Ddouble-float-shrink-1.ll63 ; CHECK: call float @asinhf(float %f)
/external/clang/lib/Headers/
Dtgmath.h183 __tg_asinh(float __x) {return asinhf(__x);} in __tg_asinh()