Home | History | Annotate | Download | only in contacts

Lines Matching full:divisor

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