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

1 2 3 4 5 6 7 8 91011

  /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);
  /prebuilts/go/darwin-x86/test/intrinsic.dir/
main.go 17 func logf(f string, args ...interface{}) { func
28 logf("Ctz64(0x%x) expected %d but got %d\n", x, i, t)
33 logf("Ctz64(0x%x) expected %d but got %d\n", x, i, t)
40 logf("Ctz32(0x%x) expected %d but got %d\n", x32, i, t32)
45 logf("Ctz32(0x%x) expected %d but got %d\n", x32, i, t32)
59 logf("Bswap64(0x%08x) expected 0x%08x but got 0x%08x\n", x, y, X)
62 logf("Bswap64(0x%08x) expected 0x%08x but got 0x%08x\n", y, x, Y)
71 logf("Bswap32(0x%08x) expected 0x%08x but got 0x%08x\n", x32, y32, X32)
74 logf("Bswap32(0x%08x) expected 0x%08x but got 0x%08x\n", y32, x32, Y32)
80 logf("ctz32(0) != 32"
    [all...]
  /prebuilts/go/linux-x86/test/intrinsic.dir/
main.go 17 func logf(f string, args ...interface{}) { func
28 logf("Ctz64(0x%x) expected %d but got %d\n", x, i, t)
33 logf("Ctz64(0x%x) expected %d but got %d\n", x, i, t)
40 logf("Ctz32(0x%x) expected %d but got %d\n", x32, i, t32)
45 logf("Ctz32(0x%x) expected %d but got %d\n", x32, i, t32)
59 logf("Bswap64(0x%08x) expected 0x%08x but got 0x%08x\n", x, y, X)
62 logf("Bswap64(0x%08x) expected 0x%08x but got 0x%08x\n", y, x, Y)
71 logf("Bswap32(0x%08x) expected 0x%08x but got 0x%08x\n", x32, y32, X32)
74 logf("Bswap32(0x%08x) expected 0x%08x but got 0x%08x\n", y32, x32, Y32)
80 logf("ctz32(0) != 32"
    [all...]
  /bionic/libm/upstream-netbsd/lib/libm/complex/
clogf.c 43 p = logf(rr);
cpowf.c 53 theta = theta + y * logf(absa);
  /external/autotest/client/bin/
base_sysinfo.py 45 def __init__(self, logf, log_in_keyval):
46 self.logf = logf
56 path = os.path.join(logdir, self.logf)
65 def __init__(self, path, logf=None, log_in_keyval=False):
66 if not logf:
67 logf = os.path.basename(path)
68 super(logfile, self).__init__(logf, log_in_keyval)
74 r %= (self.path, self.logf, self.log_in_keyval)
80 return (self.path, self.logf) == (other.path, other.logf
    [all...]
  /external/ltp/testcases/kernel/syscalls/syslog/
syslog08 92 for logf in messages maillog
94 if [ ! -e /var/log/$logf ]; then
95 tst_resm TBROK "/var/log/$logf no such log file"
  /external/eigen/Eigen/src/Core/arch/CUDA/
MathFunctions.h 24 return make_float4(logf(a.x), logf(a.y), logf(a.z), logf(a.w));
  /external/llvm/tools/llvm-diff/
DiffConsumer.h 47 virtual void logf(const LogBuilder &Log) = 0;
86 void logf(const LogBuilder &Log) override;
DiffLog.cpp 23 consumer->logf(*this);
DifferenceEngine.h 68 LogBuilder logf(StringRef text) { function in class:llvm::DifferenceEngine
DifferenceEngine.cpp 161 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;
665 logf("function %l exists only in left module") << LFn;
671 logf("function %r exists only in right module") << RFn;
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DiffConsumer.h 46 virtual void logf(const LogBuilder &Log) = 0;
87 void logf(const LogBuilder &Log);
DiffLog.cpp 24 consumer.logf(*this);
DifferenceEngine.h 68 LogBuilder logf(StringRef text) { function in class:llvm::DifferenceEngine
DifferenceEngine.cpp 164 Engine.logf("successor %l cannot be equivalent to %r; "
243 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;
660 logf("function %l exists only in left module") << LFn;
666 logf("function %r exists only in right module") << RFn;
  /external/e2fsprogs/e2fsck/
logfile.c 331 ctx->logf = fopen(s0, "w");
332 if (!ctx->logf && s1.s)
333 ctx->logf = fopen(s1.s, "w");
334 if (!ctx->logf && s2.s)
335 ctx->logf = fopen(s2.s, "w");
336 if (!ctx->logf && log_dir_wait)
337 ctx->logf = save_output(s0, s1.s, s2.s);
  /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...]
  /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]]
  /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);
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 121 inline float logf(float arg) { return log(arg); } function
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 121 inline float logf(float arg) { return log(arg); } function
  /prebuilts/ndk/r13/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)

Completed in 1765 milliseconds

1 2 3 4 5 6 7 8 91011