- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for TrailingZeros (0.11 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
lib/fips140/v1.0.0-c2097c7c.zip
return choice(x.limbs[0] & 1) } // TrailingZeroBitsVarT returns the number of trailing zero bits in x. func (x *Nat) TrailingZeroBitsVarT() uint { var t uint limbs := x.limbs for _, l := range limbs { if l == 0 { t += _W continue } t += uint(bits.TrailingZeros(l)) break } return t } // cmpGeq returns 1 if x >= y, and 0 otherwise. // // Both operands must have the same announced length. // //go:norace func (x *Nat) cmpGeq(y *Nat) choice { // Eliminate bounds checks in the loop. size := len(x.limbs) xLimbs...
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Sep 25 19:53:19 GMT 2025 - 642.7K bytes - Click Count (0)