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

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 100 *** SQRTF: single-precision square root
102 #define SQRTF(X) (float) sqrt((float) (X))
108 #define INV_SQRTF(X) (1.0F / SQRTF(X))
139 #define sqrtf(f) ((float) sqrt(f)) macro
152 static inline float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); }
153 static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); }
  /external/mesa3d/src/mesa/main/
imports.h 100 *** SQRTF: single-precision square root
102 #define SQRTF(X) (float) sqrt((float) (X))
108 #define INV_SQRTF(X) (1.0F / SQRTF(X))
139 #define sqrtf(f) ((float) sqrt(f)) macro
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)); }

Completed in 109 milliseconds