/external/mesa3d/src/mesa/main/ |
D | imports.h | 152 static INLINE float log2f(float x) { return logf(x) * 1.442695041f; } in log2f() 153 static INLINE float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); } in asinhf() 154 static INLINE float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); } in acoshf() 155 static INLINE float atanhf(float x) { return (logf(1.0f + x) - logf(1.0f - x)) / 2.0f; } in atanhf() 267 #define LOGF(x) logf(x)
|
/external/llvm/tools/llvm-diff/ |
D | DiffConsumer.h | 47 virtual void logf(const LogBuilder &Log) = 0; 86 void logf(const LogBuilder &Log);
|
D | DifferenceEngine.cpp | 164 Engine.logf("successor %l cannot be equivalent to %r; " in tryUnify() 243 Engine.logf("arguments %l and %r differ") in diffCallSites() 336 Engine.logf("right switch has extra case %r") << CaseValue; in diff() 344 Engine.logf("left switch has extra case %l") << I->first; in diff() 360 if (Complain) Engine.logf("operands %l and %r differ") << LO << RO; in diff() 666 logf("function %l exists only in left module") << LFn; in diff() 672 logf("function %r exists only in right module") << RFn; in diff()
|
D | DiffLog.cpp | 24 consumer.logf(*this); in ~LogBuilder()
|
D | DifferenceEngine.h | 70 LogBuilder logf(StringRef text) { in logf() function
|
D | DiffConsumer.cpp | 161 void DiffConsumer::logf(const LogBuilder &Log) { in logf() function in DiffConsumer
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 49 float logf(float); 84 logf, log2, log2l, log2f, nearbyint, nearbyintl, nearbyintf, pow, powl, powf,
|
D | libcalls.c | 113 float logf_ = logf(f); in test_builtins()
|
/external/llvm/test/CodeGen/XCore/ |
D | float-intrinsics.ll | 70 define float @logf(float %F) { 71 ; CHECK: logf: 72 ; CHECK: bl logf
|
/external/llvm/test/CodeGen/ARM/ |
D | 2011-11-29-128bitArithmetics.ll | 161 ; CHECK: bl {{.*}}logf 164 ; CHECK: bl {{.*}}logf 167 ; CHECK: bl {{.*}}logf 170 ; CHECK: bl {{.*}}logf
|
/external/stlport/stlport/stl/config/ |
D | _como.h | 121 inline float logf(float arg) { return log(arg); } in logf() function
|
/external/skia/include/core/ |
D | SkFloatingPoint.h | 65 #define sk_float_log(x) logf(x)
|
/external/valgrind/main/memcheck/tests/ |
D | vcpu_fnfns.c | 112 printf(" logF(%+20.4e) = %+20.4e\n", (double)f, (double)logf(f)); in main()
|
/external/llvm/include/llvm/Target/ |
D | TargetLibraryInfo.h | 208 logf, enumerator
|
/external/llvm/lib/Target/ |
D | TargetLibraryInfo.cpp | 304 TLI.setUnavailable(LibFunc::logf); in initialize()
|
/external/skia/src/core/ |
D | SkCordic.cpp | 282 float log = logf(val);
|
/external/opencv/ml/src/ |
D | mlcnn.cpp | 1110 eta = -layer->init_learn_rate/logf(1+(float)t); 1225 eta = -layer->init_learn_rate/logf(1+(float)t); 1313 eta = -layer->init_learn_rate/logf(1+(float)t);
|
/external/llvm/test/Transforms/SimplifyLibCalls/ |
D | win-math.ll | 171 ; WIN32-NOT: float @logf
|
D | double-float-shrink.ll | 176 ; CHECK: call float @logf(float %f)
|
/external/stlport/stlport/stl/ |
D | _cmath.h | 91 inline float logf(float v) { return __logf(v); } in logf() function
|
/external/clang/lib/Headers/ |
D | tgmath.h | 444 __tg_log(float __x) {return logf(__x);} in __tg_log()
|
/external/mesa3d/src/glsl/ |
D | ir_constant_expression.cpp | 344 data.f[c] = logf(op[0]->value.f[c]); in constant_expression_value()
|
/external/clang/include/clang/Basic/ |
D | Builtins.def | 871 LIBBUILTIN(logf, "ff", "fe", "math.h", ALL_LANGUAGES)
|
/external/llvm/lib/Transforms/Scalar/ |
D | SimplifyLibCalls.cpp | 1711 AddOpt(LibFunc::log, LibFunc::logf, &UnsafeUnaryDoubleFP); in InitOptimizations()
|
/external/stlport/etc/ |
D | ChangeLog-5.1 | 4951 * stlport/stl/_cmath.h: removed logf, expf, sinf, cosf; option 4994 * stlport/stl/_cmath.h: added logf, expf, sinf, cosf---this fix
|