Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for uimm16 (0.31 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    	case arg_immediate_optional_0_65535_imm16:
    		imm16 := (x >> 5) & (1<<16 - 1)
    		return Imm_dcps(imm16)
    
    	case arg_immediate_OptLSL_amount_16_0_16:
    		imm16 := (x >> 5) & (1<<16 - 1)
    		hw := (x >> 21) & (1<<2 - 1)
    		shift := hw * 16
    		if shift > 16 {
    			return nil
    		}
    		return ImmShift{uint16(imm16), uint8(shift)}
    
    	case arg_immediate_OptLSL_amount_16_0_48:
    		imm16 := (x >> 5) & (1<<16 - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CreateProcessAsUser(token Token, appName *uint16, commandLine *uint16, procSecurity *SecurityAttributes, threadSecurity *SecurityAttributes, inheritHandles bool, creationFlags uint32, env *uint16, currentDir *uint16, startupInfo *StartupInfo, outProcInfo *ProcessInformation) (err error) {
    	var _p0 uint32
    	if inheritHandles {
    		_p0 = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	GetCurrentDirectory(buflen uint32, buf *uint16) (n uint32, err error) = GetCurrentDirectoryW
    //sys	SetCurrentDirectory(path *uint16) (err error) = SetCurrentDirectoryW
    //sys	CreateDirectory(path *uint16, sa *SecurityAttributes) (err error) = CreateDirectoryW
    //sys	RemoveDirectory(path *uint16) (err error) = RemoveDirectoryW
    //sys	DeleteFile(path *uint16) (err error) = DeleteFileW
    //sys	MoveFile(from *uint16, to *uint16) (err error) = MoveFileW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    //sys	SetCurrentDirectory(path *uint16) (err error) = SetCurrentDirectoryW
    //sys	CreateDirectory(path *uint16, sa *SecurityAttributes) (err error) = CreateDirectoryW
    //sys	RemoveDirectory(path *uint16) (err error) = RemoveDirectoryW
    //sys	DeleteFile(path *uint16) (err error) = DeleteFileW
    //sys	MoveFile(from *uint16, to *uint16) (err error) = MoveFileW
    //sys	GetComputerName(buf *uint16, n *uint32) (err error) = GetComputerNameW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	NetSetupWorkgroupName
    	NetSetupDomainName
    )
    
    type UserInfo10 struct {
    	Name       *uint16
    	Comment    *uint16
    	UsrComment *uint16
    	FullName   *uint16
    }
    
    //sys	NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) = netapi32.NetUserGetInfo
    //sys	NetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) (neterr error) = netapi32.NetGetJoinInformation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages.go

    		return false
    	}
    	casLength := uint16(data[0])<<8 | uint16(data[1])
    	data = data[2:]
    	if len(data) < int(casLength) {
    		return false
    	}
    	cas := make([]byte, casLength)
    	copy(cas, data)
    	data = data[casLength:]
    
    	m.certificateAuthorities = nil
    	for len(cas) > 0 {
    		if len(cas) < 2 {
    			return false
    		}
    		caLen := uint16(cas[0])<<8 | uint16(cas[1])
    		cas = cas[2:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    	tests := []struct {
    		name            string
    		clientCiphers   []uint16
    		serverHasAESGCM bool
    		serverCiphers   []uint16
    		expectedCipher  uint16
    	}{
    		{
    			name: "server has hardware AES, client doesn't (pick ChaCha)",
    			clientCiphers: []uint16{
    				TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
    				TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    }
    
    // bufToUTF16 function reinterprets []byte buffer as []uint16
    func bufToUTF16(buf []byte) []uint16 {
    	sl := struct {
    		addr *uint16
    		len  int
    		cap  int
    	}{(*uint16)(unsafe.Pointer(&buf[0])), len(buf) / 2, cap(buf) / 2}
    	return *(*[]uint16)(unsafe.Pointer(&sl))
    }
    
    // utf16ToBuf function reinterprets []uint16 as []byte
    func utf16ToBuf(buf []uint16) []byte {
    	sl := struct {
    		addr *byte
    		len  int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top