- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for ShiftRightVarTime (0.09 sec)
-
lib/fips140/v1.0.0.zip
bounds checks in the loop. size := len(x.limbs) xLimbs := x.limbs[:size] yLimbs := y.limbs[:size] for i := 0; i < size; i++ { xLimbs[i], c = bits.Sub(xLimbs[i], yLimbs[i], c) } return } // ShiftRightVarTime sets x = x >> n. // // The announced length of x is unchanged. // //go:norace func (x *Nat) ShiftRightVarTime(n uint) *Nat { // Eliminate bounds checks in the loop. size := len(x.limbs) xLimbs := x.limbs[:size] shift := int(n % _W) shiftLimbs := int(n / _W) var shiftedLimbs []uint if shiftLimbs <...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)