Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TrailingZeros (0.07 sec)

  1. api/go1.9.txt

    pkg math/bits, func RotateLeft32(uint32, int) uint32
    pkg math/bits, func RotateLeft64(uint64, int) uint64
    pkg math/bits, func RotateLeft8(uint8, int) uint8
    pkg math/bits, func TrailingZeros(uint) int
    pkg math/bits, func TrailingZeros16(uint16) int
    pkg math/bits, func TrailingZeros32(uint32) int
    pkg math/bits, func TrailingZeros64(uint64) int
    pkg math/bits, func TrailingZeros8(uint8) int
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  2. 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...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  3. lib/fips140/v1.1.0-rc1.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...
    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