- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for xLimbs (0.06 sec)
-
lib/fips140/v1.0.0.zip
size; i++ { xLimbs[i], c = bits.Add(xLimbs[i], yLimbs[i], c) } return } // sub computes x -= y. It returns the borrow of the subtraction. // // Both operands must have the same announced length. // //go:norace func (x *Nat) sub(y *Nat) (c uint) { // Eliminate 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...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)