Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for r25 (0.02 sec)

  1. src/runtime/signal_openbsd_ppc64.go

    func (c *sigctxt) r22() uint64 { return c.regs().sc_reg[22] }
    func (c *sigctxt) r23() uint64 { return c.regs().sc_reg[23] }
    func (c *sigctxt) r24() uint64 { return c.regs().sc_reg[24] }
    func (c *sigctxt) r25() uint64 { return c.regs().sc_reg[25] }
    func (c *sigctxt) r26() uint64 { return c.regs().sc_reg[26] }
    func (c *sigctxt) r27() uint64 { return c.regs().sc_reg[27] }
    func (c *sigctxt) r28() uint64 { return c.regs().sc_reg[28] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/runtime/signal_linux_arm64.go

    func (c *sigctxt) r22() uint64 { return c.regs().regs[22] }
    func (c *sigctxt) r23() uint64 { return c.regs().regs[23] }
    func (c *sigctxt) r24() uint64 { return c.regs().regs[24] }
    func (c *sigctxt) r25() uint64 { return c.regs().regs[25] }
    func (c *sigctxt) r26() uint64 { return c.regs().regs[26] }
    func (c *sigctxt) r27() uint64 { return c.regs().regs[27] }
    func (c *sigctxt) r28() uint64 { return c.regs().regs[28] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    		// but clobbers R31 (LR) because it's a call
    		// and R23 (REGTMP).
    		// Returns a pointer to a write barrier buffer in R25.
    		{name: "LoweredWB", argLength: 1, reg: regInfo{clobbers: (callerSave &^ gpg) | buildReg("R31"), outputs: []regMask{buildReg("R25")}}, clobberFlags: true, aux: "Int64"},
    
    		// There are three of these functions so that they can have three different register inputs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. src/runtime/defs_windows_arm64.go

    	print("r19  ", hex(r.x[19]), "\n")
    	print("r20  ", hex(r.x[20]), "\n")
    	print("r21  ", hex(r.x[21]), "\n")
    	print("r22  ", hex(r.x[22]), "\n")
    	print("r23  ", hex(r.x[23]), "\n")
    	print("r24  ", hex(r.x[24]), "\n")
    	print("r25  ", hex(r.x[25]), "\n")
    	print("r26  ", hex(r.x[26]), "\n")
    	print("r27  ", hex(r.x[27]), "\n")
    	print("r28  ", hex(r.x[28]), "\n")
    	print("r29  ", hex(r.x[29]), "\n")
    	print("lr   ", hex(r.x[30]), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/runtime/signal_freebsd_arm64.go

    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] }
    func (c *sigctxt) r25() uint64 { return c.regs().mc_gpregs.gp_x[25] }
    func (c *sigctxt) r26() uint64 { return c.regs().mc_gpregs.gp_x[26] }
    func (c *sigctxt) r27() uint64 { return c.regs().mc_gpregs.gp_x[27] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/runtime/signal_openbsd_arm64.go

    func (c *sigctxt) r22() uint64 { return (uint64)(c.regs().sc_x[22]) }
    func (c *sigctxt) r23() uint64 { return (uint64)(c.regs().sc_x[23]) }
    func (c *sigctxt) r24() uint64 { return (uint64)(c.regs().sc_x[24]) }
    func (c *sigctxt) r25() uint64 { return (uint64)(c.regs().sc_x[25]) }
    func (c *sigctxt) r26() uint64 { return (uint64)(c.regs().sc_x[26]) }
    func (c *sigctxt) r27() uint64 { return (uint64)(c.regs().sc_x[27]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_mipsx.s

    	MOVW	R2, ret+16(FP)
    	RET
    
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-16
    	MOVW	sig+4(FP), R4
    	MOVW	info+8(FP), R5
    	MOVW	ctx+12(FP), R6
    	MOVW	fn+0(FP), R25
    	MOVW	R29, R22
    	SUBU	$16, R29
    	AND	$~7, R29	// shadow space for 4 args aligned to 8 bytes as per O32 ABI
    	JAL	(R25)
    	MOVW	R22, R29
    	RET
    
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME,$12
    	// this might be called in external code context,
    	// where g is not set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    
    package org.gradle.integtests.tooling.r25
    
    import org.gradle.integtests.tooling.fixture.ProgressEvents
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.integtests.tooling.fixture.WithOldConfigurationsSupport
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    const (
    	_ Reg = iota
    	R0
    	R1
    	R2
    	R3
    	R4
    	R5
    	R6
    	R7
    	R8
    	R9
    	R10
    	R11
    	R12
    	R13
    	R14
    	R15
    	R16
    	R17
    	R18
    	R19
    	R20
    	R21
    	R22
    	R23
    	R24
    	R25
    	R26
    	R27
    	R28
    	R29
    	R30
    	R31
    	F0
    	F1
    	F2
    	F3
    	F4
    	F5
    	F6
    	F7
    	F8
    	F9
    	F10
    	F11
    	F12
    	F13
    	F14
    	F15
    	F16
    	F17
    	F18
    	F19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// arg1 = address of src memory (in R16 aka arm64.REGRT1, changed as side effect)
    		// arg2 = address of the last element of src
    		// arg3 = mem
    		// returns mem
    		//	LDP.P	16(R16), (R25, Rtmp)
    		//	STP.P	(R25, Rtmp), 16(R17)
    		//	CMP	Rarg2, R16
    		//	BLE	-3(PC)
    		// Note: the-end-of-src may be not a valid pointer. it's a problem if it is spilled.
    		// the-end-of-src - 16 is within the area to copy, ok to spill.
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top