Searched refs:_d (Results 1 – 2 of 2) sorted by relevance
205 Rational(void) : _n(0), _d(1) {} in Rational()206 Rational(uint32_t n, uint32_t d) : _n(n), _d(d) {} in Rational()208 uint32_t denominator(void) { return _d; } in denominator()221 operator double() const { return (double) _n / (double) _d; } in operator double()226 uint32_t _d; member in Rational1341 if (((uint64_t) _n * other._d) in operator ==()1342 == ((uint64_t) _d * other._n)) { return true; } in operator ==()1349 if (((uint64_t) _n * other._d) in operator <()1350 < ((uint64_t) _d * other._n)) { return true; } in operator <()1359 out << _n << '/' << _d; in operator string()
702 SurfaceRef _d(dp.get(), draw); in eglMakeCurrent() local742 if (!_d.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE); in eglMakeCurrent()769 _d.acquire(); in eglMakeCurrent()