Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for fpregs (0.11 sec)

  1. src/runtime/defs_freebsd_arm64.go

    	_reason   [40]byte
    }
    
    type gpregs struct {
    	gp_x    [30]uint64
    	gp_lr   uint64
    	gp_sp   uint64
    	gp_elr  uint64
    	gp_spsr uint32
    	gp_pad  int32
    }
    
    type fpregs struct {
    	fp_q     [64]uint64 // actually [32]uint128
    	fp_sr    uint32
    	fp_cr    uint32
    	fp_flags int32
    	fp_pad   int32
    }
    
    type mcontext struct {
    	mc_gpregs gpregs
    	mc_fpregs fpregs
    	mc_flags  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/runtime/defs_freebsd_riscv64.go

    	si_status int32
    	si_addr   uint64
    	si_value  [8]byte
    	_reason   [40]byte
    }
    
    type gpregs struct {
    	gp_ra      uint64
    	gp_sp      uint64
    	gp_gp      uint64
    	gp_tp      uint64
    	gp_t       [7]uint64
    	gp_s       [12]uint64
    	gp_a       [8]uint64
    	gp_sepc    uint64
    	gp_sstatus uint64
    }
    
    type fpregs struct {
    	fp_x     [64]uint64 // actually __uint64_t fp_x[32][2]
    	fp_fcsr  uint64
    	fp_flags int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/config.go

    		c.floatParamRegs = paramFloatRegLOONG64
    		c.FPReg = framepointerRegLOONG64
    		c.LinkReg = linkRegLOONG64
    		c.hasGReg = true
    	case "s390x":
    		c.PtrSize = 8
    		c.RegSize = 8
    		c.lowerBlock = rewriteBlockS390X
    		c.lowerValue = rewriteValueS390X
    		c.registers = registersS390X[:]
    		c.gpRegMask = gpRegMaskS390X
    		c.fpRegMask = fpRegMaskS390X
    		c.FPReg = framepointerRegS390X
    		c.LinkReg = linkRegS390X
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. src/reflect/abi.go

    	stackBytes   uintptr // stack space used
    	iregs, fregs int     // registers used
    }
    
    func (a *abiSeq) dump() {
    	for i, p := range a.steps {
    		println("part", i, p.kind, p.offset, p.size, p.stkOff, p.ireg, p.freg)
    	}
    	print("values ")
    	for _, i := range a.valueStart {
    		print(i, " ")
    	}
    	println()
    	println("stack", a.stackBytes)
    	println("iregs", a.iregs)
    	println("fregs", a.fregs)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/check.go

    		if b.Func != f {
    			f.Fatalf("%s.Func=%s, want %s", b, b.Func.Name, f.Name)
    		}
    
    		for i, e := range b.Preds {
    			if se := e.b.Succs[e.i]; se.b != b || se.i != i {
    				f.Fatalf("block pred/succ not crosslinked correctly %d:%s %d:%s", i, b, se.i, se.b)
    			}
    		}
    		for i, e := range b.Succs {
    			if pe := e.b.Preds[e.i]; pe.b != b || pe.i != i {
    				f.Fatalf("block succ/pred not crosslinked correctly %d:%s %d:%s", i, b, pe.i, pe.b)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K 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. 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)
  10. src/runtime/mpallocbits.go

    func (b *pallocBits) allocAll() {
    	(*pageBits)(b).setAll()
    }
    
    // free1 frees a single page in the pallocBits at i.
    func (b *pallocBits) free1(i uint) {
    	(*pageBits)(b).clear(i)
    }
    
    // free frees the range [i, i+n) of pages in the pallocBits.
    func (b *pallocBits) free(i, n uint) {
    	(*pageBits)(b).clearRange(i, n)
    }
    
    // freeAll frees all the bits of b.
    func (b *pallocBits) freeAll() {
    	(*pageBits)(b).clearAll()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top