Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 905 for uimm16 (0.12 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows_arm.go

    package windows
    
    type WSAData struct {
    	Version      uint16
    	HighVersion  uint16
    	Description  [WSADESCRIPTION_LEN + 1]byte
    	SystemStatus [WSASYS_STATUS_LEN + 1]byte
    	MaxSockets   uint16
    	MaxUdpDg     uint16
    	VendorInfo   *byte
    }
    
    type Servent struct {
    	Name    *byte
    	Aliases **byte
    	Port    uint16
    	Proto   *byte
    }
    
    type JOBOBJECT_BASIC_LIMIT_INFORMATION struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 875 bytes
    - Viewed (0)
  3. src/strconv/makeisprint.go

    		}
    		if i > max {
    			break
    		}
    		if lo < 0 && unicode.IsPrint(i) {
    			lo = i
    		}
    	}
    	return
    }
    
    func to16(x []uint32) []uint16 {
    	var y []uint16
    	for _, v := range x {
    		if uint32(uint16(v)) != v {
    			panic("bad 32->16 conversion")
    		}
    		y = append(y, uint16(v))
    	}
    	return y
    }
    
    func main() {
    	flag.Parse()
    
    	rang, except := scan(0, 0xFFFF)
    	range16 = to16(rang)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. test/intcvt.go

    	//	chku8(uint8(f32), 0)
    	//	chku8(uint8(f64), 0)
    
    	chku16(uint16(i8), ci8&0xffff)
    	chku16(uint16(i16), ci16&0xffff)
    	chku16(uint16(i32), ci32&0xffff)
    	chku16(uint16(i64), ci64&0xffff)
    	chku16(uint16(u8), cu8&0xffff)
    	chku16(uint16(u16), cu16&0xffff)
    	chku16(uint16(u32), cu32&0xffff)
    	chku16(uint16(u64), cu64&0xffff)
    	//	chku16(uint16(f32), 0)
    	//	chku16(uint16(f64), 0)
    
    	chku32(uint32(i8), ci8&0xffffffff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_mips64.go

    	Protocol uint16
    	Ifindex  int32
    	Hatype   uint16
    	Pkttype  uint8
    	Halen    uint8
    	Addr     [8]uint8
    }
    
    type RawSockaddrNetlink struct {
    	Family uint16
    	Pad    uint16
    	Pid    uint32
    	Groups uint32
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [96]int8
    }
    
    type _Socklen uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. src/syscall/ztypes_linux_ppc64.go

    	Protocol uint16
    	Ifindex  int32
    	Hatype   uint16
    	Pkttype  uint8
    	Halen    uint8
    	Addr     [8]uint8
    }
    
    type RawSockaddrNetlink struct {
    	Family uint16
    	Pad    uint16
    	Pid    uint32
    	Groups uint32
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]uint8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [96]uint8
    }
    
    type _Socklen uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. src/syscall/ztypes_linux_riscv64.go

    }
    
    type RawSockaddrInet6 struct {
    	Family   uint16
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Family uint16
    	Path   [108]int8
    }
    
    type RawSockaddrLinklayer struct {
    	Family   uint16
    	Protocol uint16
    	Ifindex  int32
    	Hatype   uint16
    	Pkttype  uint8
    	Halen    uint8
    	Addr     [8]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CreateService(mgr Handle, serviceName *uint16, displayName *uint16, access uint32, srvType uint32, startType uint32, errCtl uint32, pathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Words71_74     [4]uint16
    	Queue_depth    uint16
    	Words76_79     [4]uint16
    	Major_rev_num  uint16
    	Minor_rev_num  uint16
    	Command_set_1  uint16
    	Command_set_2  uint16
    	Cfsse          uint16
    	Cfs_enable_1   uint16
    	Cfs_enable_2   uint16
    	Csf_default    uint16
    	Dma_ultra      uint16
    	Trseuc         uint16
    	TrsEuc         uint16
    	CurAPMvalues   uint16
    	Mprc           uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/zsyscall_windows.go

    	return
    }
    
    func LookupPrivilegeValue(systemname *uint16, name *uint16, luid *LUID) (err error) {
    	r1, _, e1 := syscall.Syscall(procLookupPrivilegeValueW.Addr(), 3, uintptr(unsafe.Pointer(systemname)), uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(luid)))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func OpenSCManager(machineName *uint16, databaseName *uint16, access uint32) (handle syscall.Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top