Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 227 for uimm16 (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    	FADV_NOREUSE  = 0x5
    )
    
    type RawSockaddrNFCLLCP struct {
    	Sa_family        uint16
    	Dev_idx          uint32
    	Target_idx       uint32
    	Nfc_protocol     uint32
    	Dsap             uint8
    	Ssap             uint8
    	Service_name     [63]uint8
    	Service_name_len uint64
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	FADV_NOREUSE  = 0x5
    )
    
    type RawSockaddrNFCLLCP struct {
    	Sa_family        uint16
    	Dev_idx          uint32
    	Target_idx       uint32
    	Nfc_protocol     uint32
    	Dsap             uint8
    	Ssap             uint8
    	Service_name     [63]uint8
    	Service_name_len uint64
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]uint8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pkg/proxy/util/nfacct/handler.go

    type handler interface {
    	newRequest(cmd int, flags uint16) request
    }
    
    // request is an injectable interface representing a netlink request.
    type request interface {
    	Serialize() []byte
    	AddData(data nl.NetlinkRequestData)
    	AddRawData(data []byte)
    	Execute(sockType int, resType uint16) ([][]byte, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. test/codegen/shift.go

    	// ppc64x:-".*RLWINM",-".*RLDICR",".*CLRLSLDI"
    	f += tab[uint16(v)|h]
    	// ppc64x:-".*AND",-"RLDICR",".*CLRLSLDI"
    	f += tab[v&0xff]
    	// ppc64x:-".*AND",".*CLRLSLWI"
    	f += 2 * uint32(uint16(d))
    	// ppc64x:-".*AND",-"RLDICR",".*CLRLSLDI"
    	g := 2 * uint64(uint32(d))
    	return f, g
    }
    
    func checkCombinedShifts(v8 uint8, v16 uint16, v32 uint32, x32 int32, v64 uint64) (uint8, uint16, uint32, uint64, int64) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/encoding/binary/binary_test.go

    			math.Float64bits(math.E),
    		} {
    			want16 := uint16(value)
    			order.PutUint16(buf[:2], want16)
    			if got := order.Uint16(buf[:2]); got != want16 {
    				t.Errorf("PutUint16: Uint16 = %v, want %v", got, want16)
    			}
    			buf = order.AppendUint16(buf[:offset], want16)
    			if got := order.Uint16(buf[offset:]); got != want16 {
    				t.Errorf("AppendUint16: Uint16 = %v, want %v", got, want16)
    			}
    			if len(buf) != offset+2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. src/os/path_windows.go

    		} else {
    			// Starts with //
    			isUNC = true
    		}
    	}
    	var prefix []uint16
    	if isUNC {
    		// UNC path, prepend the \\?\UNC\ prefix.
    		prefix = []uint16{'\\', '\\', '?', '\\', 'U', 'N', 'C', '\\'}
    	} else if isDevice {
    		// Don't add the extended prefix to device paths, as it would
    		// change its meaning.
    	} else {
    		prefix = []uint16{'\\', '\\', '?', '\\'}
    	}
    
    	p, err := syscall.UTF16FromString(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. 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)
  10. src/crypto/internal/mlkem768/mlkem768.go

    		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
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top