Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 576 for Int8 (0.16 sec)

  1. src/syscall/ztypes_openbsd_mips64.go

    	F_asyncwrites uint64
    	F_asyncreads  uint64
    	F_fsid        Fsid
    	F_namemax     uint32
    	F_owner       uint32
    	F_ctime       uint64
    	F_fstypename  [16]int8
    	F_mntonname   [90]int8
    	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
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  2. src/syscall/ztypes_freebsd_arm.go

    	Asyncwrites uint64
    	Syncreads   uint64
    	Asyncreads  uint64
    	Spare       [10]uint64
    	Namemax     uint32
    	Owner       uint32
    	Fsid        Fsid
    	Charspare   [80]int8
    	Fstypename  [16]int8
    	Mntfromname [1024]int8
    	Mntonname   [1024]int8
    }
    
    type Flock_t struct {
    	Start     int64
    	Len       int64
    	Pid       int32
    	Type      int16
    	Whence    int16
    	Sysid     int32
    	Pad_cgo_0 [4]byte
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. src/syscall/ztypes_freebsd_arm64.go

    	Asyncwrites uint64
    	Syncreads   uint64
    	Asyncreads  uint64
    	Spare       [10]uint64
    	Namemax     uint32
    	Owner       uint32
    	Fsid        Fsid
    	Charspare   [80]int8
    	Fstypename  [16]int8
    	Mntfromname [1024]int8
    	Mntonname   [1024]int8
    }
    
    type Flock_t struct {
    	Start     int64
    	Len       int64
    	Pid       int32
    	Type      int16
    	Whence    int16
    	Sysid     int32
    	Pad_cgo_0 [4]byte
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. src/runtime/defs_darwin_amd64.go

    type pthreadattr struct {
    	X__sig    int64
    	X__opaque [56]int8
    }
    type pthreadmutex struct {
    	X__sig    int64
    	X__opaque [56]int8
    }
    type pthreadmutexattr struct {
    	X__sig    int64
    	X__opaque [8]int8
    }
    type pthreadcond struct {
    	X__sig    int64
    	X__opaque [40]int8
    }
    type pthreadcondattr struct {
    	X__sig    int64
    	X__opaque [8]int8
    }
    
    type machTimebaseInfo struct {
    	numer uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. test/fixedbugs/bug296.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type I interface {
    	m(a, b, c, d, e, f, g, h byte)
    }
    
    type Int8 int8
    
    func (x Int8) m(a, b, c, d, e, f, g, h byte) {
    	check("Int8", int64(x), 0x01, a, b, c, d, e, f, g, h)
    }
    
    type Uint8 uint8
    
    func (x Uint8) m(a, b, c, d, e, f, g, h byte) {
    	check("Uint8", int64(x), 0x01, a, b, c, d, e, f, g, h)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  6. src/syscall/ztypes_freebsd_amd64.go

    	Asyncwrites uint64
    	Syncreads   uint64
    	Asyncreads  uint64
    	Spare       [10]uint64
    	Namemax     uint32
    	Owner       uint32
    	Fsid        Fsid
    	Charspare   [80]int8
    	Fstypename  [16]int8
    	Mntfromname [1024]int8
    	Mntonname   [1024]int8
    }
    
    type Flock_t struct {
    	Start     int64
    	Len       int64
    	Pid       int32
    	Type      int16
    	Whence    int16
    	Sysid     int32
    	Pad_cgo_0 [4]byte
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/lif/zsys_solaris_amd64.go

    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs defs_solaris.go
    
    package lif
    
    type sockaddrStorage struct {
    	Family     uint16
    	X_ss_pad1  [6]int8
    	X_ss_align float64
    	X_ss_pad2  [240]int8
    }
    
    const (
    	sysLIFC_NOXMIT          = 0x1
    	sysLIFC_EXTERNAL_SOURCE = 0x2
    	sysLIFC_TEMPORARY       = 0x4
    	sysLIFC_ALLZONES        = 0x8
    	sysLIFC_UNDER_IPMP      = 0x10
    	sysLIFC_ENABLED         = 0x20
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 981 bytes
    - Viewed (0)
  8. test/ken/divmod.go

    		println("int-4", in2, id2, in2/id2, in2%id2)
    		panic("fail")
    	}
    
    	/* int8 */
    	var bn1 int8 = +5
    	var bn2 int8 = -5
    	var bd1 int8 = +3
    	var bd2 int8 = -3
    
    	if bn1/bd1 != q1 || bn1%bd1 != r1 {
    		println("int8-1", bn1, bd1, bn1/bd1, bn1%bd1)
    		panic("fail")
    	}
    	if bn2/bd1 != q2 || bn2%bd1 != r2 {
    		println("int8-2", bn2, bd1, bn2/bd1, bn2%bd1)
    		panic("fail")
    	}
    	if bn1/bd2 != q3 || bn1%bd2 != r3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 5.1K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_amd64.go

    	X_f       [0]byte
    	Pad_cgo_1 [4]byte
    }
    
    type Utsname struct {
    	Sysname    [65]int8
    	Nodename   [65]int8
    	Release    [65]int8
    	Version    [65]int8
    	Machine    [65]int8
    	Domainname [65]int8
    }
    
    type Ustat_t struct {
    	Tfree     int32
    	Pad_cgo_0 [4]byte
    	Tinode    uint64
    	Fname     [6]int8
    	Fpack     [6]int8
    	Pad_cgo_1 [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_386.go

    	Totalhigh uint32
    	Freehigh  uint32
    	Unit      uint32
    	X_f       [8]int8
    }
    
    type Utsname struct {
    	Sysname    [65]int8
    	Nodename   [65]int8
    	Release    [65]int8
    	Version    [65]int8
    	Machine    [65]int8
    	Domainname [65]int8
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	Tinode uint32
    	Fname  [6]int8
    	Fpack  [6]int8
    }
    
    type EpollEvent struct {
    	Events uint32
    	Fd     int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top