Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Dilo (0.21 sec)

  1. android/guava/src/com/google/common/math/LongMath.java

             */
            long result = times2ToThe32Mod(aHi * aHi /* < 2^62 */, m); // < m < 2^63
            long hiLo = aHi * aLo * 2;
            if (hiLo < 0) {
              hiLo = UnsignedLongs.remainder(hiLo, m);
            }
            // hiLo < 2^63
            result += hiLo; // result < 2^64
            result = times2ToThe32Mod(result, m); // result < m < 2^63
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 44.6K bytes
    - Viewed (0)
Back to top