Home | History | Annotate | Download | only in params

Lines Matching defs:numerator

50     /** Numerator offset inside a rational (pair). */
91 * contiguously as a {@code (numerator, denominator)} pair.</p>
102 * where {@code Nij} and {@code Dij} is the numerator and denominator for row {@code i} and
142 int numerator = mElements[(row * COLUMNS + column) * RATIONAL_SIZE + OFFSET_NUMERATOR];
145 return new Rational(numerator, denominator);
170 int numerator = mElements[j + OFFSET_NUMERATOR];
173 destination[i + offset] = new Rational(numerator, denominator);
181 * {@code (numerator, denominator)} pair of ints, identical to the
229 int numerator = mElements[j + OFFSET_NUMERATOR];
233 Rational r = new Rational(numerator, denominator);
280 int numerator = mElements[i + OFFSET_NUMERATOR];
282 sb.append(numerator);