Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for fpregs (0.21 sec)

  1. src/runtime/defs_linux_ppc64.go

    	ss_size   uintptr
    }
    
    type sigcontext struct {
    	_unused     [4]uint64
    	signal      int32
    	_pad0       int32
    	handler     uint64
    	oldmask     uint64
    	regs        *ptregs
    	gp_regs     [48]uint64
    	fp_regs     [33]float64
    	v_regs      *vreg
    	vmx_reserve [101]int64
    }
    
    type ucontext struct {
    	uc_flags    uint64
    	uc_link     *ucontext
    	uc_stack    stackt
    	uc_sigmask  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/runtime/defs2_linux.go

    	ITIMER_REAL    = C.ITIMER_REAL
    	ITIMER_VIRTUAL = C.ITIMER_VIRTUAL
    	ITIMER_PROF    = C.ITIMER_PROF
    
    	O_RDONLY  = C.O_RDONLY
    	O_CLOEXEC = C.O_CLOEXEC
    )
    
    type Fpreg C.struct__fpreg
    type Fpxreg C.struct__fpxreg
    type Xmmreg C.struct__xmmreg
    type Fpstate C.struct__fpstate
    type Timespec C.struct_timespec
    type Timeval C.struct_timeval
    type Sigaction C.struct_kernel_sigaction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/classloading/PreferenceCleaningGroovySystemLoader.java

     */
    
    package org.gradle.api.internal.classloading;
    
    import org.gradle.api.GradleException;
    
    import java.lang.reflect.Field;
    import java.util.prefs.AbstractPreferences;
    import java.util.prefs.PreferenceChangeListener;
    import java.util.prefs.Preferences;
    
    public class PreferenceCleaningGroovySystemLoader implements GroovySystemLoader {
    
        private final Field prefListenerField;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 27 13:08:25 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. src/runtime/defs3_linux.go

    */
    import "C"
    
    const (
    	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)
  5. src/cmd/go/testdata/mod/golang.org_x_text_v0.0.0-20170915032832-14c0d48ead0c.txt

    type Matcher interface {
    	Match(...Tag) (Tag, int, int)
    }
    
    type matcher struct {
    	tags []Tag
    }
    
    func (m *matcher) Match(prefs ...Tag) (Tag, int, int) {
    	for _, pref := range prefs {
    		for _, tag := range m.tags {
    			if tag == pref || strings.HasPrefix(string(pref), string(tag+"-")) || strings.HasPrefix(string(tag), string(pref+"-")) {
    				return tag, 0, 0
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:13 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  6. src/runtime/defs1_netbsd_386.go

    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = x
    }
    
    type itimerval struct {
    	it_interval timeval
    	it_value    timeval
    }
    
    type mcontextt struct {
    	__gregs     [19]uint32
    	__fpregs    [644]byte
    	_mc_tlsbase int32
    }
    
    type ucontextt struct {
    	uc_flags    uint32
    	uc_link     *ucontextt
    	uc_sigmask  sigset
    	uc_stack    stackt
    	uc_mcontext mcontextt
    	__uc_pad    [4]int32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/runtime/defs1_netbsd_amd64.go

    	tv.tv_usec = x
    }
    
    type itimerval struct {
    	it_interval timeval
    	it_value    timeval
    }
    
    type mcontextt struct {
    	__gregs     [26]uint64
    	_mc_tlsbase uint64
    	__fpregs    [512]int8
    }
    
    type ucontextt struct {
    	uc_flags    uint32
    	pad_cgo_0   [4]byte
    	uc_link     *ucontextt
    	uc_sigmask  sigset
    	uc_stack    stackt
    	uc_mcontext mcontextt
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

            when:
            def result = accessor.withContent(location, false, action)
    
            then:
            result == "result"
    
            and:
            1 * action.execute(_, _) >> "result"
        }
    
        def "fires progress events as content is read"() {
            setup:
            metaData.getContentLength() >> 4096
            expectReadBuildOperation(4096)
            expectResourceRead(new ByteArrayInputStream(new byte[4096]))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    		return "CondRegBit"
    	case TypeCondRegField:
    		return "CondRegField"
    	case TypeFPReg:
    		return "FPReg"
    	case TypeVecReg:
    		return "VecReg"
    	case TypeVecSReg:
    		return "VecSReg"
    	case TypeVecSpReg:
    		return "VecSpReg"
    	case TypeMMAReg:
    		return "MMAReg"
    	case TypeSpReg:
    		return "SpReg"
    	case TypeImmSigned:
    		return "ImmSigned"
    	case TypeImmUnsigned:
    		return "ImmUnsigned"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. 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