Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 227 for uimm16 (0.1 sec)

  1. src/cmd/compile/internal/types2/universe.go

    	Int32:         {Int32, IsInteger, "int32"},
    	Int64:         {Int64, IsInteger, "int64"},
    	Uint:          {Uint, IsInteger | IsUnsigned, "uint"},
    	Uint8:         {Uint8, IsInteger | IsUnsigned, "uint8"},
    	Uint16:        {Uint16, IsInteger | IsUnsigned, "uint16"},
    	Uint32:        {Uint32, IsInteger | IsUnsigned, "uint32"},
    	Uint64:        {Uint64, IsInteger | IsUnsigned, "uint64"},
    	Uintptr:       {Uintptr, IsInteger | IsUnsigned, "uintptr"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/go/types/universe.go

    	Int32:         {Int32, IsInteger, "int32"},
    	Int64:         {Int64, IsInteger, "int64"},
    	Uint:          {Uint, IsInteger | IsUnsigned, "uint"},
    	Uint8:         {Uint8, IsInteger | IsUnsigned, "uint8"},
    	Uint16:        {Uint16, IsInteger | IsUnsigned, "uint16"},
    	Uint32:        {Uint32, IsInteger | IsUnsigned, "uint32"},
    	Uint64:        {Uint64, IsInteger | IsUnsigned, "uint64"},
    	Uintptr:       {Uintptr, IsInteger | IsUnsigned, "uintptr"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/runtime/sizeclasses.go

    	_MaxSmallSize   = 32768
    	smallSizeDiv    = 8
    	smallSizeMax    = 1024
    	largeSizeDiv    = 128
    	_NumSizeClasses = 68
    	_PageShift      = 13
    	maxObjsPerSpan  = 1024
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/net/udpsock_posix.go

    	if err == nil {
    		addr = netip.AddrPortFrom(ip, uint16(port))
    	}
    	return n, addr, err
    }
    
    func (c *UDPConn) readMsg(b, oob []byte) (n, oobn, flags int, addr netip.AddrPort, err error) {
    	switch c.fd.family {
    	case syscall.AF_INET:
    		var sa syscall.SockaddrInet4
    		n, oobn, flags, err = c.fd.readMsgInet4(b, oob, 0, &sa)
    		ip := netip.AddrFrom4(sa.Addr)
    		addr = netip.AddrPortFrom(ip, uint16(sa.Port))
    	case syscall.AF_INET6:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/crypto/tls/auth.go

    	default:
    		return 0, 0, fmt.Errorf("tls: unsupported public key: %T", pub)
    	}
    }
    
    var rsaSignatureSchemes = []struct {
    	scheme          SignatureScheme
    	minModulusBytes int
    	maxVersion      uint16
    }{
    	// RSA-PSS is used with PSSSaltLengthEqualsHash, and requires
    	//    emLen >= hLen + sLen + 2
    	{PSSWithSHA256, crypto.SHA256.Size()*2 + 2, VersionTLS13},
    	{PSSWithSHA384, crypto.SHA384.Size()*2 + 2, VersionTLS13},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/panicprint.go

    type MyFloat32 float32
    type MyFloat64 float64
    type MyInt int
    type MyInt8 int8
    type MyInt16 int16
    type MyInt32 int32
    type MyInt64 int64
    type MyString string
    type MyUint uint
    type MyUint8 uint8
    type MyUint16 uint16
    type MyUint32 uint32
    type MyUint64 uint64
    type MyUintptr uintptr
    
    func panicCustomComplex64() {
    	panic(MyComplex64(0.11 + 3i))
    }
    
    func panicCustomComplex128() {
    	panic(MyComplex128(32.1 + 10i))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. schema/field.go

    				schema.err = fmt.Errorf("failed to parse %s as default value for int, got error: %v", field.DefaultValue, err)
    			}
    		}
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
    		field.DataType = Uint
    		if field.HasDefaultValue && !skipParseDefaultValue {
    			if field.DefaultValueInterface, err = strconv.ParseUint(field.DefaultValue, 0, 64); err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/server_test.go

    	cases := []struct {
    		name               string
    		serverCipherSuites []uint16
    		clientCipherSuites []uint16
    		expectSuccess      bool
    	}{
    		{
    			name:          "default cipher suites",
    			expectSuccess: true,
    		},
    		{
    			name:               "client and istiod cipher suites match",
    			serverCipherSuites: []uint16{tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/os/file_windows.go

    	if err != nil {
    		return "", err
    	}
    	defer syscall.CloseHandle(h)
    
    	buf := make([]uint16, 100)
    	for {
    		n, err := windows.GetFinalPathNameByHandle(h, &buf[0], uint32(len(buf)), windows.VOLUME_NAME_DOS)
    		if err != nil {
    			return "", err
    		}
    		if n < uint32(len(buf)) {
    			break
    		}
    		buf = make([]uint16, n)
    	}
    	s = syscall.UTF16ToString(buf)
    	if len(s) > 4 && s[:4] == `\\?\` {
    		s = s[4:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/runtime/error.go

    		print(typestring, "(", *(*int64)(eface.data), ")")
    	case abi.Uint:
    		print(typestring, "(", *(*uint)(eface.data), ")")
    	case abi.Uint8:
    		print(typestring, "(", *(*uint8)(eface.data), ")")
    	case abi.Uint16:
    		print(typestring, "(", *(*uint16)(eface.data), ")")
    	case abi.Uint32:
    		print(typestring, "(", *(*uint32)(eface.data), ")")
    	case abi.Uint64:
    		print(typestring, "(", *(*uint64)(eface.data), ")")
    	case abi.Uintptr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top