Searched refs:logf (Results 1 - 25 of 43) sorted by relevance

12

/external/mesa3d/src/gallium/targets/dri-vmwgfx/
H A Dvmw_powf.c4 * replace the powf function with calls to expf and logf.
10 extern float logf(float x);
14 return expf(logf(x)*y);
/external/autotest/client/bin/
H A Dbase_sysinfo.py33 def __init__(self, logf, log_in_keyval):
34 self.logf = logf
45 path = os.path.join(logdir, self.logf)
54 def __init__(self, path, logf=None, log_in_keyval=False):
55 if not logf:
56 logf = os.path.basename(path)
57 super(logfile, self).__init__(logf, log_in_keyval)
63 r %= (self.path, self.logf, self.log_in_keyval)
69 return (self.path, self.logf)
[all...]
/external/llvm/tools/llvm-diff/
H A DDiffConsumer.h46 virtual void logf(const LogBuilder &Log) = 0;
85 void logf(const LogBuilder &Log) override;
H A DDiffLog.cpp24 consumer->logf(*this);
H A DDifferenceEngine.h69 LogBuilder logf(StringRef text) { function in class:llvm::DifferenceEngine
H A DDifferenceEngine.cpp162 Engine.logf("successor %l cannot be equivalent to %r; "
239 Engine.logf("arguments %l and %r differ")
332 Engine.logf("right switch has extra case %r") << CaseValue;
340 Engine.logf("left switch has extra case %l") << I->first;
356 if (Complain) Engine.logf("operands %l and %r differ") << LO << RO;
662 logf("function %l exists only in left module") << LFn;
668 logf("function %r exists only in right module") << RFn;
H A DDiffConsumer.cpp160 void DiffConsumer::logf(const LogBuilder &Log) { function in class:DiffConsumer
/external/e2fsprogs/e2fsck/
H A Dlogfile.c326 ctx->logf = fopen(s0, "w");
327 if (!ctx->logf && s1.s)
328 ctx->logf = fopen(s1.s, "w");
329 if (!ctx->logf && s2.s)
330 ctx->logf = fopen(s2.s, "w");
331 if (!ctx->logf && log_dir_wait)
332 ctx->logf = save_output(s0, s1.s, s2.s);
H A Dutil.c91 if (ctx->logf) {
93 vfprintf(ctx->logf, fmt, pvar);
105 if (ctx->logf) {
107 vfprintf(ctx->logf, fmt, pvar);
H A Dproblem.c1930 if (ctx->logf && message)
1931 print_e2fsck_message(ctx->logf, ctx, message, pctx, 1, 0);
1969 if (ctx->logf)
1970 fprintf(ctx->logf, "%s.\n", answer ?
H A Dunix.c1215 if (ctx->logf) {
1217 fputs("E2fsck run: ", ctx->logf);
1220 fputc(' ', ctx->logf);
1221 fputs(argv[i], ctx->logf);
1223 fputc('\n', ctx->logf);
1466 if (ctx->logf)
1467 fprintf(ctx->logf, "Filesystem UUID: %s\n",
/external/mesa3d/src/mesa/main/
H A Dimports.h128 #define logf(f) ((float) log(f)) macro
131 #define log2f(f) (logf(f) * (float) (1.0 / M_LN2))
150 static inline float log2f(float x) { return logf(x) * 1.442695041f; }
151 static inline float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); }
152 static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); }
153 static inline float atanhf(float x) { return (logf(1.0f + x) - logf(1.0f - x)) / 2.0f; }
265 #define LOGF(x) logf(x)
/external/clang/test/CodeGen/
H A Dlibcalls.c118 float logf_ = logf(f);
121 // CHECK-NO: declare float @logf(float) [[NUW_RN]]
124 // CHECK-YES-NOT: declare float @logf(float) [[NUW_RN]]
H A Dlibcall-declarations.c116 float logf(float);
285 F(log), F(logf), F(logl), F(log10), F(log10f),
415 // CHECK-NOERRNO: declare float @logf(float) [[NUW]]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_math.h103 static INLINE float logf( float f ) function
109 /* Work-around an extra semi-colon in VS 2005 logf definition */
110 #ifdef logf
111 #undef logf macro
112 #define logf(x) ((float)log((double)(x))) macro
113 #endif /* logf */
156 return logf(f) * (float) (1.0 / M_LN2);
/external/opencv3/3rdparty/openexr/Imath/
H A DImathMath.h137 static float log (float x) {return ::logf (x);}
/external/opencv3/modules/photo/src/
H A Dtonemap.cpp142 pow(gray_img / static_cast<float>(max), logf(bias) / logf(0.5f), div);
498 int levels = static_cast<int>(logf(static_cast<float>(min(src.rows, src.cols))) / logf(2.0f));
H A Dmerge.cpp214 int maxlevel = static_cast<int>(logf(static_cast<float>(min(size.width, size.height))) / logf(2.0f));
/external/skia/include/private/
H A DSkFloatingPoint.h76 #define sk_float_log(x) logf(x)
/external/valgrind/memcheck/tests/
H A Dvcpu_fnfns.c112 printf(" logF(%+20.4e) = %+20.4e\n", (double)f, (double)logf(f));
/external/bison/darwin-lib/
H A Dmath.h1514 # undef logf
1515 # define logf rpl_logf
1517 _GL_FUNCDECL_RPL (logf, float, (float x));
1518 _GL_CXXALIAS_RPL (logf, float, (float x));
1521 # undef logf
1522 _GL_FUNCDECL_SYS (logf, float, (float x));
1524 _GL_CXXALIAS_SYS (logf, float, (float x));
1526 _GL_CXXALIASWARN (logf);
1528 # undef logf macro
1530 _GL_WARN_ON_USE (logf, "log
[all...]
/external/bison/lib/
H A Dmath.in.h1202 # undef logf macro
1203 # define logf rpl_logf macro
1205 _GL_FUNCDECL_RPL (logf, float, (float x));
1206 _GL_CXXALIAS_RPL (logf, float, (float x));
1209 # undef logf macro
1210 _GL_FUNCDECL_SYS (logf, float, (float x));
1212 _GL_CXXALIAS_SYS (logf, float, (float x));
1214 _GL_CXXALIASWARN (logf); variable
1216 # undef logf macro
1218 _GL_WARN_ON_USE (logf, "log
[all...]
/external/bison/linux-lib/
H A Dmath.h1514 # undef logf
1515 # define logf rpl_logf
1517 _GL_FUNCDECL_RPL (logf, float, (float x));
1518 _GL_CXXALIAS_RPL (logf, float, (float x));
1521 # undef logf
1522 _GL_FUNCDECL_SYS (logf, float, (float x));
1524 _GL_CXXALIAS_SYS (logf, float, (float x));
1526 _GL_CXXALIASWARN (logf);
1528 # undef logf macro
1530 _GL_WARN_ON_USE (logf, "log
[all...]
/external/webrtc/webrtc/modules/audio_processing/intelligibility/
H A Dintelligibility_enhancer.cc117 11.17f * logf((freqs_khz + 0.312f) / (freqs_khz + 14.6575f)) + 43.0f));
259 11.17f * logf((freq_limit + 0.312f) / (freq_limit + 14.6575f)) + 43.0f));
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_arit.c233 {"log", &lp_build_log, &logf, log2_values, Elements(log2_values), 20.0 },

Completed in 2697 milliseconds

12