Searched refs:getNumerator (Results 1 – 15 of 15) sorted by relevance
530 if (v.getNumerator() < 0 in checkOverflowForUnsignedRational()532 || v.getNumerator() > UNSIGNED_LONG_MAX in checkOverflowForUnsignedRational()542 if (v.getNumerator() < LONG_MIN in checkOverflowForRational()544 || v.getNumerator() > LONG_MAX in checkOverflowForRational()
37 long getNumerator() { in getNumerator() method in Rational
941 if (v.getNumerator() < 0 || v.getDenominator() < 0 in checkOverflowForUnsignedRational()942 || v.getNumerator() > UNSIGNED_LONG_MAX in checkOverflowForUnsignedRational()952 if (v.getNumerator() < LONG_MIN || v.getDenominator() < LONG_MIN in checkOverflowForRational()953 || v.getNumerator() > LONG_MAX in checkOverflowForRational()
50 public long getNumerator() { in getNumerator() method in Rational
52 writeInt((int) rational.getNumerator()); in writeRational()
175 mByteBuffer.putInt((int) v.getNumerator()); in writeTagValue()
51 public long getNumerator() { in getNumerator() method in Rational
174 mByteBuffer.putInt((int) v.getNumerator()); in writeTagValue()
235 return (float) compensationStep.getNumerator() / compensationStep.getDenominator(); in getExposureCompensationStep()