Searched defs:dividend (Results 1 - 3 of 3) sorted by relevance

/external/kernel-headers/original/linux/
H A Dcalc64.h11 * The 64bit dividend is divided by the divisor (data type long), the
14 * do_div macro the dividend is kept intact.
17 #define div_long_long_rem(dividend, divisor, remainder) \
18 do_div_llr((dividend), divisor, remainder)
20 static inline unsigned long do_div_llr(const long long dividend, argument
23 u64 result = dividend;
32 * negative dividend leads to an divide overflow exception, which
35 static inline long div_long_long_rem_signed(const long long dividend, argument
40 if (unlikely(dividend < 0)) {
41 res = -div_long_long_rem(-dividend, diviso
[all...]
/external/icu4c/i18n/
H A Dgregoimp.cpp40 double ClockMath::floorDivide(double dividend, double divisor, argument
44 double quotient = floorDivide(dividend, divisor);
45 remainder = dividend - (quotient * divisor);
67 remainder = dividend - (quotient * divisor);
/external/guava/src/com/google/common/collect/
H A DSets.java821 long dividend = 1;
824 Axis axis = new Axis(set, (int) dividend); // check overflow at end
826 dividend *= axis.size();
829 size = Ints.checkedCast(dividend);
903 final int dividend; field in class:Sets.CartesianSet.Axis
905 Axis(Set<? extends B> set, int dividend) { argument
907 this.dividend = dividend;
915 return choices.asList().get(index / dividend % size());

Completed in 194 milliseconds