Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for UInt16 (0.29 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    type DNSSRVData struct {
    	Target   *uint16
    	Priority uint16
    	Weight   uint16
    	Port     uint16
    	Pad      uint16
    }
    
    type DNSPTRData struct {
    	Host *uint16
    }
    
    type DNSMXData struct {
    	NameExchange *uint16
    	Preference   uint16
    	Pad          uint16
    }
    
    type DNSTXTData struct {
    	StringCount uint16
    	StringArray [1]*uint16
    }
    
    type DNSRecord struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    func gt_255_uint16(x uint16) bool   { return x > 255 }
    func ge_255_uint16(x uint16) bool   { return x >= 255 }
    func eq_255_uint16(x uint16) bool   { return x == 255 }
    func ne_255_uint16(x uint16) bool   { return x != 255 }
    func lt_256_uint16(x uint16) bool   { return x < 256 }
    func le_256_uint16(x uint16) bool   { return x <= 256 }
    func gt_256_uint16(x uint16) bool   { return x > 256 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

     => (Leq16U
    			(RotateLeft16 <typ.UInt16>
    				(Add16 <typ.UInt16>
    					(Mul16 <typ.UInt16>
    						(Const16 <typ.UInt16> [int16(sdivisible16(c).m)])
    						x)
    					(Const16 <typ.UInt16> [int16(sdivisible16(c).a)])
    				)
    				(Const16 <typ.UInt16> [int16(16-sdivisible16(c).k)])
    			)
    			(Const16 <typ.UInt16> [int16(sdivisible16(c).max)])
    		)
    
    (Eq32 x (Mul32 (Const32 [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    						Protocol:  "TCP",
    						Port:      uint16(80),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.103",
    						Port:     3001,
    						Protocol: "TCP",
    					}: {
    						Address:   netutils.ParseIPSloppy("100.101.102.103"),
    						Protocol:  "TCP",
    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	{V(uint16(75)), V(int64(75))},
    	{V(int64(76)), V(uint16(76))},
    	{V(uint16(77)), V(uint64(77))},
    	{V(uint64(78)), V(uint16(78))},
    	{V(uint16(79)), V(int(79))},
    	{V(int(80)), V(uint16(80))},
    	{V(uint16(81)), V(uint(81))},
    	{V(uint(82)), V(uint16(82))},
    	{V(uint16(83)), V(uintptr(83))},
    	{V(uintptr(84)), V(uint16(84))},
    	{V(uint16(85)), V(float32(85))},
    	{V(float32(86)), V(uint16(86))},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    	Ehsize    uint16          /* Size of ELF header in bytes. */
    	Phentsize uint16          /* Size of program header entry. */
    	Phnum     uint16          /* Number of program header entries. */
    	Shentsize uint16          /* Size of section header entry. */
    	Shnum     uint16          /* Number of section header entries. */
    	Shstrndx  uint16          /* Section name strings section. */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. src/reflect/value.go

    	case Int:
    		*(*int)(v.ptr) = 0
    	case Int8:
    		*(*int8)(v.ptr) = 0
    	case Int16:
    		*(*int16)(v.ptr) = 0
    	case Int32:
    		*(*int32)(v.ptr) = 0
    	case Int64:
    		*(*int64)(v.ptr) = 0
    	case Uint:
    		*(*uint)(v.ptr) = 0
    	case Uint8:
    		*(*uint8)(v.ptr) = 0
    	case Uint16:
    		*(*uint16)(v.ptr) = 0
    	case Uint32:
    		*(*uint32)(v.ptr) = 0
    	case Uint64:
    		*(*uint64)(v.ptr) = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. api/go1.3.txt

    pkg debug/pe, type OptionalHeader32 struct, MajorSubsystemVersion uint16
    pkg debug/pe, type OptionalHeader32 struct, MinorImageVersion uint16
    pkg debug/pe, type OptionalHeader32 struct, MinorLinkerVersion uint8
    pkg debug/pe, type OptionalHeader32 struct, MinorOperatingSystemVersion uint16
    pkg debug/pe, type OptionalHeader32 struct, MinorSubsystemVersion uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	0x43,
    }
    
    type parentRel struct {
    	lang       uint16
    	script     uint16
    	maxScript  uint16
    	toRegion   uint16
    	fromRegion []uint16
    }
    
    // Size: 414 bytes, 5 elements
    var parents = [5]parentRel{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
Back to top