Searched refs:_n (Results 1 – 2 of 2) sorted by relevance
191 #define GL_EXTENSION_NAME(_n) __glExtFwd##_n argument193 #define GL_EXTENSION(_n) \ argument194 void API_ENTRY(GL_EXTENSION_NAME(_n))() { \195 CALL_GL_EXTENSION_API(_n); \198 #define GL_EXTENSION_NAME(_n) NULL200 #define GL_EXTENSION(_n)244 #define GL_EXTENSION_ARRAY(_n) GL_EXTENSION_NAME(_n), argument
205 Rational(void) : _n(0), _d(1) {} in Rational()206 Rational(uint32_t n, uint32_t d) : _n(n), _d(d) {} in Rational()207 uint32_t numerator(void) { return _n; } in numerator()209 void setNumerator(uint32_t numerator) { _n = numerator; } in setNumerator()221 operator double() const { return (double) _n / (double) _d; } in operator double()225 uint32_t _n; member in Rational1340 if (((uint64_t) _n * other._d) in operator ==()1341 == ((uint64_t) _d * other._n)) { return true; } in operator ==()1348 if (((uint64_t) _n * other._d) in operator <()1349 < ((uint64_t) _d * other._n)) { return true; } in operator <()[all …]