Home | History | Annotate | Download | only in libagl

Lines Matching defs:CONST

34 extern "C" GLfixed gglFloatToFixed(float f) __attribute__((const));
41 GLfloat fixedToFloat(GLfixed) CONST;
44 float sinef(GLfloat x) CONST;
45 float cosinef(GLfloat x) CONST;
47 inline bool cmpf(GLfloat a, GLfloat b) CONST;
48 inline bool isZerof(GLfloat) CONST;
49 inline bool isOnef(GLfloat) CONST;
51 inline int isZeroOrNegativef(GLfloat) CONST;
53 inline int exponent(GLfloat) CONST;
54 inline int32_t mantissa(GLfloat) CONST;
55 inline GLfloat clampToZerof(GLfloat) CONST;
56 inline GLfloat reciprocalf(GLfloat) CONST;
57 inline GLfloat rsqrtf(GLfloat) CONST;
58 inline GLfloat sqrf(GLfloat) CONST;
59 inline GLfloat addExpf(GLfloat v, int e) CONST;
60 inline GLfloat mul2f(GLfloat v) CONST;
61 inline GLfloat div2f(GLfloat v) CONST;
62 inline GLfloat absf(GLfloat v) CONST;
75 inline float fastexpf(float y) __attribute__((const));
90 const float kOneOverLogTwo = (1L<<23) / M_LN2;
91 const int32_t kExponentBias = 127L<<23;
92 const int32_t e = int32_t(y*kOneOverLogTwo);
160 const int s = i >> 31;