- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for TrailingZeroBitsVarT (0.57 sec)
-
lib/fips140/v1.0.0.zip
m.Nat() minusOne.SubOne(m) return x.Equal(minusOne) } // IsOdd returns 1 if x is odd, and 0 otherwise. func (x *Nat) IsOdd() choice { if len(x.limbs) == 0 { return no } 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. // //...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)