Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for int16 (0.05 sec)

  1. api/go1.14.txt

    pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 = 52393
    pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 uint16
    pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 = 52392
    pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 uint16
    pkg crypto/tls, func CipherSuiteName(uint16) string
    pkg crypto/tls, func CipherSuites() []*CipherSuite
    pkg crypto/tls, func InsecureCipherSuites() []*CipherSuite
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  2. api/go1.20.txt

    pkg syscall (freebsd-riscv64), type Dirent struct, Namlen uint16 #53466
    pkg syscall (freebsd-riscv64), type Dirent struct, Off int64 #53466
    pkg syscall (freebsd-riscv64), type Dirent struct, Pad0 uint8 #53466
    pkg syscall (freebsd-riscv64), type Dirent struct, Pad1 uint16 #53466
    pkg syscall (freebsd-riscv64), type Dirent struct, Reclen uint16 #53466
    pkg syscall (freebsd-riscv64), type Dirent struct, Type uint8 #53466
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  3. RELEASE.md

        *   Added 16-bit and 32-bit int support for the built-in op `bitcast`.
        *   Added 8-bit/16-bit/32-bit int/uint support for the built-in op `bitwise_xor`
        *   Added int16 indices support for built-in op `gather` and `gather_nd`.
        *   Added 8-bit/16-bit/32-bit int/uint support for the built-in op `right_shift`
        *   Added reference implementation for 16-bit int unquantized `add`.
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Tue Oct 28 22:27:41 UTC 2025
    - 740.4K bytes
    - Viewed (3)
  4. lib/fips140/v1.1.0-rc1.zip

    b2, b3, b4) } } return pk } func pkDecode(pk []byte, t1 [][n]uint16, p parameters) (ρ []byte, err error) { if len(pk) != pubKeySize(p) { return nil, errInvalidPublicKeyL } ρ, pk = pk[:32], pk[32:] for r := range t1 { // Decode four at a time from 4 * 10 bits = 5 bytes. for i := 0; i < n; i += 4 { b0, b1, b2, b3, b4 := pk[0], pk[1], pk[2], pk[3], pk[4] t1[r][i+0] = uint16(b0>>0) | uint16(b1&0b0000_0011)<<8 t1[r][i+1] = uint16(b1>>2) | uint16(b2&0b0000_1111)<<6 t1[r][i+2] = uint16(b2>>4) | uint16(b3&0b0011_1111)<<4...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
  5. lib/fips140/v1.0.0-c2097c7c.zip

    n; i += 4 { x := uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 | uint64(b[4])<<32 b = b[5:] f[i] = fieldElement(decompress(uint16(x>>0&0b11_1111_1111), 10)) f[i+1] = fieldElement(decompress(uint16(x>>10&0b11_1111_1111), 10)) f[i+2] = fieldElement(decompress(uint16(x>>20&0b11_1111_1111), 10)) f[i+3] = fieldElement(decompress(uint16(x>>30&0b11_1111_1111), 10)) } return f } // ringCompressAndEncod appends an encoding of a ring element to s, // compressing each coefficient to d...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
Back to top