Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for geweest (0.06 sec)

  1. lib/fips140/v1.0.0.zip

    q.Nat().SubOne(q) // lcm(a, b) = a×b / gcd(a, b) = a × (b / gcd(a, b)) // Our GCD requires at least one of the numbers to be odd. For LCM we only // need to preserve the larger prime power of each prime factor, so we can // right-shift the number with the fewest trailing zeros until it's odd. // For odd a, b and m >= n, lcm(a×2ᵐ, b×2ⁿ) = lcm(a×2ᵐ, b). az, bz := a.TrailingZeroBitsVarT(), b.TrailingZeroBitsVarT() if az < bz { a = a.ShiftRightVarTime(az) } else { b = b.ShiftRightVarTime(bz) } gcd, err := bi...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top