Home | History | Annotate | Download | only in contacts

Lines Matching refs:divisor

409     private static final int safeDiv(int dividend, int divisor) {
410 return (divisor == 0) ? 0 : (dividend / divisor);