Home | History | Annotate | Download | only in util

Lines Matching defs:toBigInteger

438       toBigInteger(duration).multiply(toBigInteger(times)));
443 toBigInteger(duration).divide(toBigInteger(times)));
447 return toBigInteger(d1).divide(toBigInteger(d2)).longValue();
452 toBigInteger(d1).remainder(toBigInteger(d2)));
458 private static BigInteger toBigInteger(Duration duration) {
459 return toBigInteger(duration.getSeconds())
461 .add(toBigInteger(duration.getNanos()));
464 private static BigInteger toBigInteger(long value) {