Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,138 for INT32 (0.1 sec)

  1. src/runtime/stubs2.go

    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // read calls the read system call.
    // It returns a non-negative number of bytes written or a negative errno value.
    func read(fd int32, p unsafe.Pointer, n int32) int32
    
    func closefd(fd int32) int32
    
    func exit(code int32)
    func usleep(usec uint32)
    
    //go:nosplit
    func usleep_no_g(usec uint32) {
    	usleep(usec)
    }
    
    // write1 calls the write system call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/syscall/ztypes_darwin_amd64.go

    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Refcount  int32
    }
    
    type RtMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Addrs     int32
    	Pid       int32
    	Seq       int32
    	Errno     int32
    	Use       int32
    	Inits     uint32
    	Rmx       RtMetrics
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  3. src/runtime/os3_solaris.go

    func pipe2(flags int32) (r, w int32, errno int32) {
    	var p [2]int32
    	_, e := sysvicall2Err(&libc_pipe2, uintptr(noescape(unsafe.Pointer(&p))), uintptr(flags))
    	return p[0], p[1], int32(e)
    }
    
    //go:nosplit
    func fcntl(fd, cmd, arg int32) (ret int32, errno int32) {
    	r1, err := sysvicall3Err(&libc_fcntl, uintptr(fd), uintptr(cmd), uintptr(arg))
    	return int32(r1), int32(err)
    }
    
    func osyield1()
    
    //go:nosplit
    func osyield_no_g() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/syscall/ztypes_freebsd_arm.go

    	Nswap    int32
    	Inblock  int32
    	Oublock  int32
    	Msgsnd   int32
    	Msgrcv   int32
    	Nsignals int32
    	Nvcsw    int32
    	Nivcsw   int32
    }
    
    type Rlimit struct {
    	Cur int64
    	Max int64
    }
    
    type _Gid_t uint32
    
    const (
    	S_IFMT   = 0xf000
    	S_IFIFO  = 0x1000
    	S_IFCHR  = 0x2000
    	S_IFDIR  = 0x4000
    	S_IFBLK  = 0x6000
    	S_IFREG  = 0x8000
    	S_IFLNK  = 0xa000
    	S_IFSOCK = 0xc000
    	S_ISUID  = 0x800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go

    )
    
    type PtraceLwpInfoStruct struct {
    	Lwpid        int32
    	Event        int32
    	Flags        int32
    	Sigmask      Sigset_t
    	Siglist      Sigset_t
    	Siginfo      __PtraceSiginfo
    	Tdname       [20]int8
    	Child_pid    int32
    	Syscall_code uint32
    	Syscall_narg uint32
    }
    
    type __Siginfo struct {
    	Signo  int32
    	Errno  int32
    	Code   int32
    	Pid    int32
    	Uid    uint32
    	Status int32
    	Addr   *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. src/runtime/defs_aix_ppc64.go

    var sigset_all = sigset{^uint64(0), ^uint64(0), ^uint64(0), ^uint64(0)}
    
    type siginfo struct {
    	si_signo   int32
    	si_errno   int32
    	si_code    int32
    	si_pid     int32
    	si_uid     uint32
    	si_status  int32
    	si_addr    uintptr
    	si_band    int64
    	si_value   [2]int32 // [8]byte
    	__si_flags int32
    	__pad      [3]int32
    }
    
    type timespec struct {
    	tv_sec  int64
    	tv_nsec int64
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/syscall/ztypes_openbsd_ppc64.go

    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Hdrlen   uint16
    	Index    uint16
    	Tableid  uint16
    	Priority uint8
    	Mpls     uint8
    	Addrs    int32
    	Flags    int32
    	Fmask    int32
    	Pid      int32
    	Seq      int32
    	Errno    int32
    	Inits    uint32
    	Rmx      RtMetrics
    }
    
    type RtMetrics struct {
    	Pksent   uint64
    	Expire   int64
    	Locks    uint32
    	Mtu      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/syscall/ztypes_freebsd_amd64.go

    	What    uint16
    }
    
    type RtMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Addrs     int32
    	Pid       int32
    	Seq       int32
    	Errno     int32
    	Fmask     int32
    	Inits     uint64
    	Rmx       RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint64
    	Mtu      uint64
    	Hopcount uint64
    	Expire   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. src/runtime/os2_aix.go

    }
    
    //go:nosplit
    func open(name *byte, mode, perm int32) int32 {
    	r, _ := syscall3(&libc_open, uintptr(unsafe.Pointer(name)), uintptr(mode), uintptr(perm))
    	return int32(r)
    }
    
    //go:nosplit
    func closefd(fd int32) int32 {
    	r, _ := syscall1(&libc_close, uintptr(fd))
    	return int32(r)
    }
    
    //go:nosplit
    func pipe() (r, w int32, errno int32) {
    	var p [2]int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. src/math/rand/v2/regress_test.go

    	int64(6093522341581845358), // Int()
    
    	int32(1652216515), // Int32()
    	int32(1323786710), // Int32()
    	int32(1684546306), // Int32()
    	int32(1710678126), // Int32()
    	int32(503104460),  // Int32()
    	int32(88487615),   // Int32()
    	int32(1073552320), // Int32()
    	int32(965044529),  // Int32()
    	int32(285184408),  // Int32()
    	int32(394559696),  // Int32()
    	int32(1421454622), // Int32()
    	int32(955177040),  // Int32()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top