HomeSort by relevance Sort by last modified time
    Searched refs:LOGF (Results 1 - 2 of 2) sorted by null

  /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/mesa3d/src/mesa/swrast/
s_aaline.c 205 return (GLfloat) (LOGF(rho2) * 1.442695 * 0.5);/* 1.442695 = 1/log(2) */

Completed in 68 milliseconds