Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,908 for UINT32 (0.12 sec)

  1. src/runtime/signal_openbsd_arm.go

    func (c *sigctxt) pc() uint32 { return c.regs().sc_pc }
    
    func (c *sigctxt) cpsr() uint32    { return c.regs().sc_spsr }
    func (c *sigctxt) fault() uintptr  { return uintptr(c.sigaddr()) }
    func (c *sigctxt) trap() uint32    { return 0 }
    func (c *sigctxt) error() uint32   { return 0 }
    func (c *sigctxt) oldmask() uint32 { return 0 }
    
    func (c *sigctxt) sigcode() uint32 { return uint32(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 13 18:13:30 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  2. src/runtime/signal_openbsd_386.go

    }
    
    func (c *sigctxt) eax() uint32 { return c.regs().sc_eax }
    func (c *sigctxt) ebx() uint32 { return c.regs().sc_ebx }
    func (c *sigctxt) ecx() uint32 { return c.regs().sc_ecx }
    func (c *sigctxt) edx() uint32 { return c.regs().sc_edx }
    func (c *sigctxt) edi() uint32 { return c.regs().sc_edi }
    func (c *sigctxt) esi() uint32 { return c.regs().sc_esi }
    func (c *sigctxt) ebp() uint32 { return c.regs().sc_ebp }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func RegQueryInfoKey(key Handle, class *uint16, classLen *uint32, reserved *uint32, subkeysLen *uint32, maxSubkeyLen *uint32, maxClassLen *uint32, valuesLen *uint32, maxValueNameLen *uint32, maxValueLen *uint32, saLen *uint32, lastWriteTime *Filetime) (regerrno 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)
  4. src/syscall/ztypes_openbsd_riscv64.go

    	Pid      int32
    	Seq      int32
    	Errno    int32
    	Inits    uint32
    	Rmx      RtMetrics
    }
    
    type RtMetrics struct {
    	Pksent   uint64
    	Expire   int64
    	Locks    uint32
    	Mtu      uint32
    	Refcnt   uint32
    	Hopcount uint32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    	Rtt      uint32
    	Rttvar   uint32
    	Pad      uint32
    }
    
    type Mclpool struct{}
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_s390x.go

    	_              [2]byte
    	Rto            uint32
    	Ato            uint32
    	Snd_mss        uint32
    	Rcv_mss        uint32
    	Unacked        uint32
    	Sacked         uint32
    	Lost           uint32
    	Retrans        uint32
    	Fackets        uint32
    	Last_data_sent uint32
    	Last_ack_sent  uint32
    	Last_data_recv uint32
    	Last_ack_recv  uint32
    	Pmtu           uint32
    	Rcv_ssthresh   uint32
    	Rtt            uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go

    	Pid      int32
    	Seq      int32
    	Errno    int32
    	Inits    uint32
    	Rmx      RtMetrics
    }
    
    type RtMetrics struct {
    	Pksent   uint64
    	Expire   int64
    	Locks    uint32
    	Mtu      uint32
    	Refcnt   uint32
    	Hopcount uint32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    	Rtt      uint32
    	Rttvar   uint32
    	Pad      uint32
    }
    
    type Mclpool struct{}
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	return o<<26 | xo<<4 | oe<<11
    }
    
    func OPDQ(o uint32, xo uint32, oe uint32) uint32 {
    	return o<<26 | xo | oe<<4
    }
    
    func OPVX(o uint32, xo uint32, oe uint32, rc uint32) uint32 {
    	return o<<26 | xo | oe<<11 | rc&1
    }
    
    func OPVC(o uint32, xo uint32, oe uint32, rc uint32) uint32 {
    	return o<<26 | xo | oe<<11 | (rc&1)<<10
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. src/runtime/signal_freebsd_386.go

    func (c *sigctxt) eax() uint32 { return c.regs().mc_eax }
    func (c *sigctxt) ebx() uint32 { return c.regs().mc_ebx }
    func (c *sigctxt) ecx() uint32 { return c.regs().mc_ecx }
    func (c *sigctxt) edx() uint32 { return c.regs().mc_edx }
    func (c *sigctxt) edi() uint32 { return c.regs().mc_edi }
    func (c *sigctxt) esi() uint32 { return c.regs().mc_esi }
    func (c *sigctxt) ebp() uint32 { return c.regs().mc_ebp }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	Type       [64]uint8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]uint8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]uint8
    	Geniv       [64]uint8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    }
    
    type CryptoReportAEAD struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/syscall/ztypes_freebsd_riscv64.go

    	Datalen   uint32
    	Hdrlen    uint16
    	Pad_cgo_0 [6]byte
    }
    
    type BpfZbufHeader struct {
    	Kernel_gen uint32
    	Kernel_len uint32
    	User_gen   uint32
    	X_bzh_pad  [5]uint32
    }
    
    const (
    	_AT_FDCWD            = -0x64
    	_AT_SYMLINK_FOLLOW   = 0x400
    	_AT_SYMLINK_NOFOLLOW = 0x200
    )
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Cc     [20]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top