OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LOGF
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/tcmalloc/chromium/src/tests/
heap-checker_unittest.cc
168
#define
LOGF
VLOG(INFO)
318
LOGF
<< message << " : "
[
all
...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
heap-checker_unittest.cc
168
#define
LOGF
VLOG(INFO)
318
LOGF
<< message << " : "
[
all
...]
Completed in 1741 milliseconds