Searched defs:factor (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/math/
H A DMultiplication.java88 * @param factor a positive {@code int} number
89 * @return {@code val * factor}
91 static BigInteger multiplyByPositiveInt(BigInteger val, int factor) { argument
93 bi.multiplyByPositiveInt(factor);
H A DBigInteger.java1135 static int multiplyByInt(int[] res, int[] a, int aSize, int factor) { argument
1139 carry += (a[i] & 0xFFFFFFFFL) * (factor & 0xFFFFFFFFL);
/libcore/luni/src/main/java/javax/xml/datatype/
H A DDuration.java618 * <p>Computes a new duration whose value is <code>factor</code> times
624 * multiply(new BigDecimal(String.valueOf(factor)))
627 * @param factor Factor times longer of new <code>Duration</code> to create.
629 * @return New <code>Duration</code> that is <code>factor</code>times longer than this <code>Duration</code>.
633 public Duration multiply(int factor) { argument
634 return multiply(BigDecimal.valueOf(factor));
638 * Computes a new duration whose value is <code>factor</code> times
672 * @param factor to multiply by
680 * @throws NullPointerException if the <code>factor</code> parameter is
684 public abstract Duration multiply(final BigDecimal factor); argument
[all...]
/libcore/benchmarks/src/benchmarks/regression/
H A DR.java1598 public static final int factor = 0; field in class:R

Completed in 1977 milliseconds