Searched refs:_n (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/opengl/libs/EGL/
H A DgetProcAddress.cpp193 #define GL_EXTENSION_NAME(_n) __glExtFwd##_n
195 #define GL_EXTENSION(_n) \
196 void API_ENTRY(GL_EXTENSION_NAME(_n))() { \
197 CALL_GL_EXTENSION_API(_n); \
200 #define GL_EXTENSION_NAME(_n) NULL
202 #define GL_EXTENSION(_n)
246 #define GL_EXTENSION_ARRAY(_n) GL_EXTENSION_NAME(_n),
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp204 Rational(void) : _n(0), _d(1) {}
205 Rational(uint32_t n, uint32_t d) : _n(n), _d(d) {}
206 uint32_t numerator(void) { return _n; }
208 void setNumerator(uint32_t numerator) { _n = numerator; }
220 operator double() const { return (double) _n / (double) _d; }
224 uint32_t _n; member in class:Rational
1339 if (((uint64_t) _n * other._d)
1340 == ((uint64_t) _d * other._n)) { return true; }
1347 if (((uint64_t) _n * other._d)
1348 < ((uint64_t) _d * other._n)) { retur
[all...]

Completed in 655 milliseconds