Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 266 for uint16 (0.11 sec)

  1. src/runtime/defs_freebsd_arm64.go

    type umtx_time struct {
    	_timeout timespec
    	_flags   uint32
    	_clockid uint32
    }
    
    type keventt struct {
    	ident  uint64
    	filter int16
    	flags  uint16
    	fflags uint32
    	data   int64
    	udata  *byte
    	ext    [4]uint64
    }
    
    type bintime struct {
    	sec  int64
    	frac uint64
    }
    
    type vdsoTimehands struct {
    	algo         uint32
    	gen          uint32
    	scale        uint64
    	offset_count uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/syscall/dir_plan9.go

    	Mode   uint32 // permissions
    	Atime  uint32 // last read time
    	Mtime  uint32 // last write time
    	Length int64  // file length
    	Name   string // last element of path
    	Uid    string // owner name
    	Gid    string // group name
    	Muid   string // last modifier name
    }
    
    var nullDir = Dir{
    	Type: ^uint16(0),
    	Dev:  ^uint32(0),
    	Qid: Qid{
    		Path: ^uint64(0),
    		Vers: ^uint32(0),
    		Type: ^uint8(0),
    	},
    	Mode:   ^uint32(0),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/runtime/defs_windows.go

    	allocationProtect uint32
    	regionSize        uintptr
    	state             uint32
    	protect           uint32
    	type_             uint32
    }
    
    // https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/ns-wdm-_osversioninfow
    type _OSVERSIONINFOW struct {
    	osVersionInfoSize uint32
    	majorVersion      uint32
    	minorVersion      uint32
    	buildNumber       uint32
    	platformId        uint32
    	csdVersion        [128]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/roundtrip_test.go

    		},
    		{
    			name: "int16 max",
    			obj:  int16(math.MaxInt16),
    		},
    		{
    			name: "int16 min",
    			obj:  int16(math.MinInt16),
    		},
    		{
    			name: "int16 zero",
    			obj:  int16(math.MinInt16),
    		},
    		{
    			name: "uint16 max",
    			obj:  uint16(math.MaxUint16),
    		},
    		{
    			name: "uint16 zero",
    			obj:  uint16(0),
    		},
    		{
    			name: "int8 max",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 21:48:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/os/path_windows.go

    	// the working directory has changed without using os.Chdir.
    	n := uint32(pathLength) + 1
    	var buf []uint16
    	for {
    		buf = make([]uint16, n+uint32(len(prefix)))
    		n, err = syscall.GetFullPathName(&p[0], n, &buf[len(prefix)], nil)
    		if err != nil {
    			return path
    		}
    		if n <= uint32(len(buf)-len(prefix)) {
    			buf = buf[:n+uint32(len(prefix))]
    			break
    		}
    	}
    	if isUNC {
    		// Remove leading \\.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/runtime/defs_freebsd_386.go

    	mc_onstack       uint32
    	mc_gs            uint32
    	mc_fs            uint32
    	mc_es            uint32
    	mc_ds            uint32
    	mc_edi           uint32
    	mc_esi           uint32
    	mc_ebp           uint32
    	mc_isp           uint32
    	mc_ebx           uint32
    	mc_edx           uint32
    	mc_ecx           uint32
    	mc_eax           uint32
    	mc_trapno        uint32
    	mc_err           uint32
    	mc_eip           uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/runtime/defs_freebsd_riscv64.go

    	gp_ra      uint64
    	gp_sp      uint64
    	gp_gp      uint64
    	gp_tp      uint64
    	gp_t       [7]uint64
    	gp_s       [12]uint64
    	gp_a       [8]uint64
    	gp_sepc    uint64
    	gp_sstatus uint64
    }
    
    type fpregs struct {
    	fp_x     [64]uint64 // actually __uint64_t fp_x[32][2]
    	fp_fcsr  uint64
    	fp_flags int32
    	pad      int32
    }
    
    type mcontext struct {
    	mc_gpregs gpregs
    	mc_fpregs fpregs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/image/ycbcr.go

    type NYCbCrA struct {
    	YCbCr
    	A       []uint8
    	AStride int
    }
    
    func (p *NYCbCrA) ColorModel() color.Model {
    	return color.NYCbCrAModel
    }
    
    func (p *NYCbCrA) At(x, y int) color.Color {
    	return p.NYCbCrAAt(x, y)
    }
    
    func (p *NYCbCrA) RGBA64At(x, y int) color.RGBA64 {
    	r, g, b, a := p.NYCbCrAAt(x, y).RGBA()
    	return color.RGBA64{uint16(r), uint16(g), uint16(b), uint16(a)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // for more information on the format.
    func compInfo(v uint16, sz int) Properties {
    	if v == 0 {
    		return Properties{size: uint8(sz)}
    	} else if v >= 0x8000 {
    		p := Properties{
    			size:  uint8(sz),
    			ccc:   uint8(v),
    			tccc:  uint8(v),
    			flags: qcInfo(v >> 8),
    		}
    		if p.ccc > 0 || p.combinesBackward() {
    			p.nLead = uint8(p.flags & 0x3)
    		}
    		return p
    	}
    	// has decomposition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/util/testing/fake_test.go

    		Address:  netutils.ParseIPSloppy("10::40"),
    		Port:     uint16(8080),
    		Protocol: string("UDP"),
    	}
    	err = fake.AddVirtualServer(vs2)
    	if err != nil {
    		t.Errorf("Unexpected error when add virtual server, error: %v", err)
    	}
    	// Add another virtual server
    	vs3 := &utilipvs.VirtualServer{
    		Address:  netutils.ParseIPSloppy("10::40"),
    		Port:     uint16(7777),
    		Protocol: string("SCTP"),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top