Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for fpregs (0.1 sec)

  1. src/runtime/mpagealloc_test.go

    	}
    	tests := map[string]struct {
    		before map[ChunkIdx][]BitRange
    		after  map[ChunkIdx][]BitRange
    		npages uintptr
    		frees  []uintptr
    	}{
    		"Free1": {
    			npages: 1,
    			before: map[ChunkIdx][]BitRange{
    				BaseChunkIdx: {{0, PallocChunkPages}},
    			},
    			frees: []uintptr{
    				PageBase(BaseChunkIdx, 0),
    				PageBase(BaseChunkIdx, 1),
    				PageBase(BaseChunkIdx, 2),
    				PageBase(BaseChunkIdx, 3),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. docs/fr/docs/deployment/versions.md

    Après avoir effectué des tests, vous pouvez mettre à jour la version **FastAPI** vers une version plus récente, et vous assurer que tout votre code fonctionne correctement en exécutant vos tests.
    
    Si tout fonctionne, ou après avoir fait les changements nécessaires, et que tous vos tests passent, vous pouvez
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:39:54 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. src/runtime/signal_linux_ppc64x.go

    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) regs() *ptregs      { return (*ucontext)(c.ctxt).uc_mcontext.regs }
    func (c *sigctxt) cregs() *sigcontext { return &(*ucontext)(c.ctxt).uc_mcontext }
    
    func (c *sigctxt) r0() uint64  { return c.regs().gpr[0] }
    func (c *sigctxt) r1() uint64  { return c.regs().gpr[1] }
    func (c *sigctxt) r2() uint64  { return c.regs().gpr[2] }
    func (c *sigctxt) r3() uint64  { return c.regs().gpr[3] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/anames5.go

    	"REGREG",
    	"REGREG2",
    	"REGLIST",
    	"SHIFT",
    	"SHIFTADDR",
    	"FREG",
    	"PSR",
    	"FCR",
    	"SPR",
    	"RCON",
    	"NCON",
    	"RCON2A",
    	"RCON2S",
    	"SCON",
    	"LCON",
    	"LCONADDR",
    	"ZFCON",
    	"SFCON",
    	"LFCON",
    	"RACON",
    	"LACON",
    	"SBRA",
    	"LBRA",
    	"HAUTO",
    	"FAUTO",
    	"HFAUTO",
    	"SAUTO",
    	"LAUTO",
    	"HOREG",
    	"FOREG",
    	"HFOREG",
    	"SOREG",
    	"ROREG",
    	"SROREG",
    	"LOREG",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 27 19:54:44 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingListener.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services.model;
    
    /**
     * Defines events that the model builder fires during construction of the effective model. When a listener encounters
     * errors while processing the event, it can report these problems via {@link ModelBuildingEvent#problems()}.
     */
    public interface ModelBuildingListener {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top