Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for fInt16 (0.12 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	sectionAdditionals: "Additional",
    }
    
    // header is the wire format for a DNS message header.
    type header struct {
    	id          uint16
    	bits        uint16
    	questions   uint16
    	answers     uint16
    	authorities uint16
    	additionals uint16
    }
    
    func (h *header) count(sec section) uint16 {
    	switch sec {
    	case sectionQuestions:
    		return h.questions
    	case sectionAnswers:
    		return h.answers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	extensionPreSharedKey            uint16 = 41
    	extensionEarlyData               uint16 = 42
    	extensionSupportedVersions       uint16 = 43
    	extensionCookie                  uint16 = 44
    	extensionPSKModes                uint16 = 45
    	extensionCertificateAuthorities  uint16 = 47
    	extensionSignatureAlgorithmsCert uint16 = 50
    	extensionKeyShare                uint16 = 51
    	extensionQUICTransportParameters uint16 = 57
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    			CipherSuites:      []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    			SignatureSchemes:  []SignatureScheme{PKCS1WithSHA1},
    			SupportedVersions: []uint16{VersionTLS13, VersionTLS12},
    		}, "signature algorithms"},
    		{rsaCert, &ClientHelloInfo{
    			CipherSuites:      []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    			SignatureSchemes:  []SignatureScheme{PKCS1WithSHA1},
    			SupportedVersions: []uint16{VersionTLS13, VersionTLS12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    	ip               string
    	hnsID            string
    	healthCheckHnsID string
    }
    
    type loadBalancerInfo struct {
    	hnsID string
    }
    
    type loadBalancerIdentifier struct {
    	protocol      uint16
    	internalPort  uint16
    	externalPort  uint16
    	vip           string
    	endpointsHash [20]byte
    }
    
    type loadBalancerFlags struct {
    	isILB           bool
    	isDSR           bool
    	isVipExternalIP bool
    	localRoutedVIP  bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. src/reflect/type.go

    }
    
    var kindNames = []string{
    	Invalid:       "invalid",
    	Bool:          "bool",
    	Int:           "int",
    	Int8:          "int8",
    	Int16:         "int16",
    	Int32:         "int32",
    	Int64:         "int64",
    	Uint:          "uint",
    	Uint8:         "uint8",
    	Uint16:        "uint16",
    	Uint32:        "uint32",
    	Uint64:        "uint64",
    	Uintptr:       "uintptr",
    	Float32:       "float32",
    	Float64:       "float64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    					goto overflow
    				}
    
    			default:
    				if int64(int16(t)) != t {
    					goto overflow
    				}
    			}
    		}
    
    		return int64(int16(t))
    
    	case sym.RV_POWER_DS:
    		var o1 uint32
    		if target.IsBigEndian() {
    			o1 = uint32(binary.BigEndian.Uint16(p[r.Off():]))
    		} else {
    			o1 = uint32(binary.LittleEndian.Uint16(p[r.Off():]))
    		}
    		if t&3 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    func nlz16(x int16) int { return bits.LeadingZeros16(uint16(x)) }
    func nlz8(x int8) int   { return bits.LeadingZeros8(uint8(x)) }
    
    // ntzX returns the number of trailing zeros.
    func ntz64(x int64) int { return bits.TrailingZeros64(uint64(x)) }
    func ntz32(x int32) int { return bits.TrailingZeros32(uint32(x)) }
    func ntz16(x int16) int { return bits.TrailingZeros16(uint16(x)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (CMPWconst (MOVLconst [x]) [y]) && int16(x)==y => (FlagEQ)
    (CMPWconst (MOVLconst [x]) [y]) && int16(x)<y && uint16(x)<uint16(y) => (FlagLT_ULT)
    (CMPWconst (MOVLconst [x]) [y]) && int16(x)<y && uint16(x)>uint16(y) => (FlagLT_UGT)
    (CMPWconst (MOVLconst [x]) [y]) && int16(x)>y && uint16(x)<uint16(y) => (FlagGT_ULT)
    (CMPWconst (MOVLconst [x]) [y]) && int16(x)>y && uint16(x)>uint16(y) => (FlagGT_UGT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    	case sys.MIPS, sys.MIPS64:
    		eh.Machine = uint16(elf.EM_MIPS)
    	case sys.Loong64:
    		eh.Machine = uint16(elf.EM_LOONGARCH)
    	case sys.ARM:
    		eh.Machine = uint16(elf.EM_ARM)
    	case sys.AMD64:
    		eh.Machine = uint16(elf.EM_X86_64)
    	case sys.ARM64:
    		eh.Machine = uint16(elf.EM_AARCH64)
    	case sys.I386:
    		eh.Machine = uint16(elf.EM_386)
    	case sys.PPC64:
    		eh.Machine = uint16(elf.EM_PPC64)
    	case sys.RISCV64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/zero_test.go

    	if a != want {
    		t.Errorf("zero1025 got=%v, want %v\n", a, want)
    	}
    }
    
    type Z8u1 struct {
    	b   bool
    	val [8]byte
    }
    type Z8u2 struct {
    	i   uint16
    	val [8]byte
    }
    
    //go:noinline
    func zero8u1_ssa(t *Z8u1) {
    	t.val = [8]byte{}
    }
    
    //go:noinline
    func zero8u2_ssa(t *Z8u2) {
    	t.val = [8]byte{}
    }
    func testZero8u(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 49.6K bytes
    - Viewed (0)
Back to top