Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 145 for reg2 (0.08 sec)

  1. src/runtime/signal_openbsd_riscv64.go

    func (c *sigctxt) t2() uint64  { return uint64(c.regs().sc_t[2]) }
    func (c *sigctxt) s0() uint64  { return uint64(c.regs().sc_s[0]) }
    func (c *sigctxt) s1() uint64  { return uint64(c.regs().sc_s[1]) }
    func (c *sigctxt) a0() uint64  { return uint64(c.regs().sc_a[0]) }
    func (c *sigctxt) a1() uint64  { return uint64(c.regs().sc_a[1]) }
    func (c *sigctxt) a2() uint64  { return uint64(c.regs().sc_a[2]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/runtime/signal_freebsd_arm64.go

    func (c *sigctxt) r19() uint64 { return c.regs().mc_gpregs.gp_x[19] }
    func (c *sigctxt) r20() uint64 { return c.regs().mc_gpregs.gp_x[20] }
    func (c *sigctxt) r21() uint64 { return c.regs().mc_gpregs.gp_x[21] }
    func (c *sigctxt) r22() uint64 { return c.regs().mc_gpregs.gp_x[22] }
    func (c *sigctxt) r23() uint64 { return c.regs().mc_gpregs.gp_x[23] }
    func (c *sigctxt) r24() uint64 { return c.regs().mc_gpregs.gp_x[24] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/runtime/signal_netbsd_amd64.go

    func (c *sigctxt) rsi() uint64 { return c.regs().__gregs[_REG_RSI] }
    func (c *sigctxt) rbp() uint64 { return c.regs().__gregs[_REG_RBP] }
    func (c *sigctxt) rsp() uint64 { return c.regs().__gregs[_REG_RSP] }
    func (c *sigctxt) r8() uint64  { return c.regs().__gregs[_REG_R8] }
    func (c *sigctxt) r9() uint64  { return c.regs().__gregs[_REG_R9] }
    func (c *sigctxt) r10() uint64 { return c.regs().__gregs[_REG_R10] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 18:51:53 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    		if e.ID != vid {
    			continue
    		}
    		if e.regs[0] == r {
    			// Already known and highest priority
    			return
    		}
    		for j := 1; j < len(e.regs); j++ {
    			if e.regs[j] == r {
    				// Move from lower priority to top priority
    				copy(e.regs[1:], e.regs[:j])
    				e.regs[0] = r
    				return
    			}
    		}
    		copy(e.regs[1:], e.regs[:])
    		e.regs[0] = r
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/dump_test.go

    			},
    		},
    		{
    			file: "escaping.dot",
    			nodes: []*dotVertex{
    				NewDOTVertex(makeNode(ref1, withOwners(ref2))),
    				NewDOTVertex(makeNode(ref2)),
    			},
    			edges: []dotEdge{
    				{F: types.UID(ref1.UID), T: types.UID(ref2.UID)},
    			},
    		},
    	}
    
    	for _, tc := range testcases {
    		t.Run(tc.file, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/a.out.go

    	C_SACON    /* $n(REG) where n <= int16 */
    	C_LACON    /* $n(REG) where n <= int32 */
    	C_DACON    /* $n(REG) where n <= int64 */
    	C_BRA      /* A short offset argument to a branching instruction */
    	C_BRAPIC   /* Like C_BRA, but requires an extra NOP for potential TOC restore by the linker. */
    	C_ZOREG    /* An $0+reg memory op */
    	C_SOREG    /* An $n+reg memory arg where n is a 16 bit signed offset */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go

    }
    
    // PtraceSetRegsMips sets the registers used by mips binaries.
    func PtraceSetRegsMips(pid int, regs *PtraceRegsMips) error {
    	return ptracePtr(PTRACE_SETREGS, pid, 0, unsafe.Pointer(regs))
    }
    
    // PtraceRegsMips64 is the registers used by mips64 binaries.
    type PtraceRegsMips64 struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

            Restriction res1 = i1.next();
            Restriction res2 = i2.next();
    
            boolean done = false;
            while (!done) {
                if (res1.getLowerBound() == null
                        || res2.getUpperBound() == null
                        || res1.getLowerBound().compareTo(res2.getUpperBound()) <= 0) {
                    if (res1.getUpperBound() == null
                            || res2.getLowerBound() == null
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go

    }
    
    // PtraceSetRegSetArm64 sets the registers used by arm64 binaries.
    func PtraceSetRegSetArm64(pid, addr int, regs *PtraceRegsArm64) error {
    	iovec := Iovec{(*byte)(unsafe.Pointer(regs)), uint64(unsafe.Sizeof(*regs))}
    	return ptracePtr(PTRACE_SETREGSET, pid, uintptr(addr), unsafe.Pointer(&iovec))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 721 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "MULD", argLength: 2, reg: fp21, asm: "MULD", commutative: true},   // arg0 * arg1
    		{name: "NMULF", argLength: 2, reg: fp21, asm: "NMULF", commutative: true}, // -(arg0 * arg1)
    		{name: "NMULD", argLength: 2, reg: fp21, asm: "NMULD", commutative: true}, // -(arg0 * arg1)
    		{name: "DIVF", argLength: 2, reg: fp21, asm: "DIVF"},                      // arg0 / arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
Back to top