Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 321 for Int16 (0.04 sec)

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

    	Gid     uint32
    	Rdev    uint64
    	Size    int64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Blksize int32
    	Blocks  int64
    	Fstype  [16]int8
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Sysid  int32
    	Pid    int32
    	Pad    [4]int64
    }
    
    type Dirent struct {
    	Ino    uint64
    	Off    int64
    	Reclen uint16
    	Name   [1]int8
    	_      [5]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. test/abi/bad_internal_offsets.go

    	}
    }
    
    type StructF0S0 struct {
    	F0 int16
    	F1 string
    	F2 StructF0S1
    }
    
    type StructF0S1 struct {
    	_ uint16
    }
    
    // 0 returns 3 params
    //go:registerparams
    //go:noinline
    func Test0(p0 uint32, p1 StructF0S0, p2 int32) {
    	// consume some stack space, so as to trigger morestack
    	var pad [256]uint64
    	pad[FailCount]++
    	if p0 == 0 {
    		return
    	}
    	p1f0c := int16(-3096)
    	if p1.F0 != p1f0c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    	POLLIN     = 0x1
    	POLLNVAL   = 0x8000
    	POLLOUT    = 0x2
    	POLLPRI    = 0x4
    	POLLRDBAND = 0x20
    	POLLRDNORM = 0x10
    	POLLWRBAND = 0x40
    	POLLWRNORM = 0x2
    )
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Sysid  uint32
    	Pid    int32
    	Vfs    int32
    	Start  int64
    	Len    int64
    }
    
    type Fsid_t struct {
    	Val [2]uint32
    }
    type Fsid64_t struct {
    	Val [2]uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/reflect/iter.go

    				return []Value{ValueOf(yield(in[0]))}
    			})
    			v.Call([]Value{rf})
    		}
    	}
    	switch v.Kind() {
    	case Int:
    		return rangeNum[int](v.Int())
    	case Int8:
    		return rangeNum[int8](v.Int())
    	case Int16:
    		return rangeNum[int16](v.Int())
    	case Int32:
    		return rangeNum[int32](v.Int())
    	case Int64:
    		return rangeNum[int64](v.Int())
    	case Uint:
    		return rangeNum[uint](v.Uint())
    	case Uint8:
    		return rangeNum[uint8](v.Uint())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_arm64.go

    	Off       int64
    	Reclen    uint16
    	Type      uint8
    	Name      [256]int8
    	Pad_cgo_0 [5]byte
    }
    
    type Fsid struct {
    	X__val [2]int32
    }
    
    type Flock_t struct {
    	Type      int16
    	Whence    int16
    	Pad_cgo_0 [4]byte
    	Start     int64
    	Len       int64
    	Pid       int32
    	Pad_cgo_1 [4]byte
    }
    
    type RawSockaddrInet4 struct {
    	Family uint16
    	Port   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/mips/a.out.go

    // For now, this is adequate for both 32 and 64 bit.
    var MIPSDWARFRegisters = map[int16]int16{}
    
    func init() {
    	// f assigns dwarfregisters[from:to] = (base):(to-from+base)
    	f := func(from, to, base int16) {
    		for r := int16(from); r <= to; r++ {
    			MIPSDWARFRegisters[r] = (r - from) + base
    		}
    	}
    	f(REG_R0, REG_R31, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    (CMPconst [0] z:((NEG|CNTLZD|RLDICL) x)) && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    // Note: ADDCCconst only assembles to 1 instruction for int16 constants.
    (CMPconst [0] z:(ADDconst [c] x)) && int64(int16(c)) == c && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    (CMPconst [0] z:(ANDconst [c] x)) && int64(uint16(c)) == c && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/a.out.go

    // https://refspecs.linuxfoundation.org/ELF/zSeries/lzsabi0_zSeries/x1472.html
    var S390XDWARFRegisters = map[int16]int16{}
    
    func init() {
    	// f assigns dwarfregisters[from:to by step] = (base):((to-from)/step+base)
    	f := func(from, step, to, base int16) {
    		for r := int16(from); r <= to; r += step {
    			S390XDWARFRegisters[r] = (r-from)/step + base
    		}
    	}
    	f(REG_R0, 1, REG_R15, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. src/syscall/ztypes_openbsd_riscv64.go

    	F_mntfromname [90]int8
    	F_mntfromspec [90]int8
    	Pad_cgo_0     [2]byte
    	Mount_info    [160]byte
    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno       uint64
    	Off          int64
    	Reclen       uint16
    	Type         uint8
    	Namlen       uint8
    	X__d_padding [4]uint8
    	Name         [256]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. src/syscall/ztypes_openbsd_ppc64.go

    	F_mntfromname [90]int8
    	F_mntfromspec [90]int8
    	Pad_cgo_0     [2]byte
    	Mount_info    [160]byte
    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno       uint64
    	Off          int64
    	Reclen       uint16
    	Type         uint8
    	Namlen       uint8
    	X__d_padding [4]uint8
    	Name         [256]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top