Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fp_reg_set (0.21 sec)

  1. src/runtime/defs1_solaris_amd64.go

    	__data   [240]byte
    }
    
    type sigactiont struct {
    	sa_flags  int32
    	pad_cgo_0 [4]byte
    	_funcptr  [8]byte
    	sa_mask   sigset
    }
    
    type fpregset struct {
    	fp_reg_set [528]byte
    }
    
    type mcontext struct {
    	gregs  [28]int64
    	fpregs fpregset
    }
    
    type ucontext struct {
    	uc_flags    uint64
    	uc_link     *ucontext
    	uc_sigmask  sigset
    	uc_stack    stackt
    	pad_cgo_0   [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:40:51 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/runtime/defs3_linux.go

    	O_RDONLY    = C.O_RDONLY
    	O_CLOEXEC   = C.O_CLOEXEC
    	SA_RESTORER = 0 // unused
    )
    
    type Usigset C.__sigset_t
    
    // types used in sigcontext
    type Ptregs C.struct_pt_regs
    type Gregset C.elf_gregset_t
    type FPregset C.elf_fpregset_t
    type Vreg C.elf_vrreg_t
    
    type StackT C.stack_t
    
    // PPC64 uses sigcontext in place of mcontext in ucontext.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. src/runtime/defs_solaris.go

    	PORT_ALERT_UPDATE = C.PORT_ALERT_UPDATE
    )
    
    type SemT C.sem_t
    
    type Sigset C.sigset_t
    type StackT C.stack_t
    
    type Siginfo C.siginfo_t
    type Sigaction C.struct_sigaction
    
    type Fpregset C.fpregset_t
    type Mcontext C.mcontext_t
    type Ucontext C.ucontext_t
    
    type Timespec C.struct_timespec
    type Timeval C.struct_timeval
    type Itimerval C.struct_itimerval
    
    type PortEvent C.port_event_t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 17:47:39 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top