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

1 2 3 4 5 6

  /external/mesa3d/src/gallium/targets/dri-vmwgfx/
vmw_powf.c 4 * 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/
base_sysinfo.py 33 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) == (other.path, other.logf
    [all...]
  /external/llvm/tools/llvm-diff/
DiffConsumer.h 46 virtual void logf(const LogBuilder &Log) = 0;
85 void logf(const LogBuilder &Log) override;
DiffLog.cpp 24 consumer->logf(*this);
DifferenceEngine.h 69 LogBuilder logf(StringRef text) { function in class:llvm::DifferenceEngine
DifferenceEngine.cpp 162 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;
  /external/e2fsprogs/e2fsck/
logfile.c 326 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);
util.c 91 if (ctx->logf) {
93 vfprintf(ctx->logf, fmt, pvar);
105 if (ctx->logf) {
107 vfprintf(ctx->logf, fmt, pvar);
  /external/mesa3d/src/mesa/main/
imports.h 128 #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; }
255 *** LOGF: the natural logarithm (base e) of the value
265 #define LOGF(x) logf(x
    [all...]
  /frameworks/av/include/media/nbaio/
NBLog.h 126 virtual void logf(const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
160 virtual void logf(const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
  /external/clang/test/CodeGen/
libcalls.c 118 float logf_ = logf(f);
121 // CHECK-NO: declare float @logf(float) [[NUW_RN]]
124 // CHECK-YES-NOT: declare float @logf(float) [[NUW_RN]]
libcall-declarations.c 116 float logf(float);
285 F(log), F(logf), F(logl), F(log10), F(log10f),
415 // CHECK-NOERRNO: declare float @logf(float) [[NUW]]
  /bionic/libm/upstream-freebsd/lib/msun/src/
catrigf.c 113 *rx = logf(A + sqrtf(A * A - 1));
294 return (CMPLXF(logf(hypotf(x / m_e, y / m_e)) + 1,
298 return (CMPLXF(logf(hypotf(x, y)), atan2f(y, x)));
300 return (CMPLXF(logf(ax * ax + ay * ay) / 2, atan2f(y, x)));
373 rx = (m_ln2 - logf(ay)) / 2;
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 103 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);
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 121 inline float logf(float arg) { return log(arg); } function
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 121 inline float logf(float arg) { return log(arg); } function
  /external/llvm/lib/Support/Windows/
explicit_symbols.inc 85 INLINE_DEF_FLOAT_SYMBOL(logf, 1)
  /device/google/dragon/audio/hal/dsp/
drc_math.h 131 return 8.6858896380650366f * logf(linear);
  /external/opencv3/3rdparty/openexr/Imath/
ImathMath.h 137 static float log (float x) {return ::logf (x);}
  /external/opencv3/modules/photo/src/
tonemap.cpp 142 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));
  /external/skia/include/private/
SkFloatingPoint.h 76 #define sk_float_log(x) logf(x)
  /external/valgrind/memcheck/tests/
vcpu_fnfns.c 112 printf(" logF(%+20.4e) = %+20.4e\n", (double)f, (double)logf(f));
  /external/bison/darwin-lib/
math.h 1528 # undef logf macro
    [all...]
  /external/bison/lib/
math.in.h 1202 # undef logf macro
1203 # define logf macro
1209 # undef logf macro
1214 _GL_CXXALIASWARN (logf); variable
1216 # undef logf macro
    [all...]
  /external/bison/linux-lib/
math.h 1528 # undef logf macro
    [all...]

Completed in 903 milliseconds

1 2 3 4 5 6