Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for bb (0.39 sec)

  1. lib/fips140/v1.0.0-c2097c7c.zip

    func natBytes(n *Nat) []byte { return n.Bytes(maxModulus(uint(len(n.limbs)))) } func natFromBytes(b []byte) *Nat { // Must not use Nat.SetBytes as it's used in TestSetBytes. bb := new(big.Int).SetBytes(b) return NewNat().setBig(bb) } func modulusFromBytes(b []byte) *Modulus { bb := new(big.Int).SetBytes(b) m, _ := NewModulus(bb.Bytes()) return m } // maxModulus returns the biggest modulus that can fit in n limbs. func maxModulus(n uint) *Modulus { b := big.NewInt(1) b.Lsh(b, n*_W) b.Sub(b, big.NewInt(1))...
    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

    func natBytes(n *Nat) []byte { return n.Bytes(maxModulus(uint(len(n.limbs)))) } func natFromBytes(b []byte) *Nat { // Must not use Nat.SetBytes as it's used in TestSetBytes. bb := new(big.Int).SetBytes(b) return NewNat().setBig(bb) } func modulusFromBytes(b []byte) *Modulus { bb := new(big.Int).SetBytes(b) m, _ := NewModulus(bb.Bytes()) return m } // maxModulus returns the biggest modulus that can fit in n limbs. func maxModulus(n uint) *Modulus { b := big.NewInt(1) b.Lsh(b, n*_W) b.Sub(b, big.NewInt(1))...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
  3. doc/go_spec.html

    var pp = 1<<s == 1<<33         // illegal: 1 has type int, but 1<<33 overflows int
    var xx = a[1.0<<s]             // 1.0 has type int; xx == a[0]
    var bb = make([]byte, 1.0<<s)  // 1.0 has type int; len(bb) == 0
    </pre>
    
    <h4 id="Operator_precedence">Operator precedence</h4>
    <p>
    Unary operators have the highest precedence.
    As the  <code>++</code> and <code>--</code> operators form
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Dec 02 23:07:19 UTC 2025
    - 286.5K bytes
    - Viewed (1)
  4. cmd/testdata/decryptObjectInfo.json.zst

    gz4x7R39a7IYSk6xu=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAJLGx0j5t0ToJfC7==","X-Minio-Internal-Server-Side-Encryption-S3-Sealed-Key":"IAAfAOWY6FL2WUP/Bb/dHzdT3gEpnVM4JQ859a6+QDzxVcnzFNsyOlRSA7i8==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"text/plain"}},{"Bucket":"buck1","Name":"go_113/src/cmd/go/testdata/script/mod_indirect_main.txt","UserDef":{"...
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
Back to top