Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TrailingZeroBitsVarT (0.09 sec)

  1. lib/fips140/v1.0.0-c2097c7c.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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top