Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 201 for r8 (0.04 sec)

  1. src/runtime/signal_aix_ppc64.go

    func (c *sigctxt) r5() uint64  { return c.regs().gpr[5] }
    func (c *sigctxt) r6() uint64  { return c.regs().gpr[6] }
    func (c *sigctxt) r7() uint64  { return c.regs().gpr[7] }
    func (c *sigctxt) r8() uint64  { return c.regs().gpr[8] }
    func (c *sigctxt) r9() uint64  { return c.regs().gpr[9] }
    func (c *sigctxt) r10() uint64 { return c.regs().gpr[10] }
    func (c *sigctxt) r11() uint64 { return c.regs().gpr[11] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/runtime/signal_openbsd_ppc64.go

    func (c *sigctxt) r5() uint64  { return c.regs().sc_reg[5] }
    func (c *sigctxt) r6() uint64  { return c.regs().sc_reg[6] }
    func (c *sigctxt) r7() uint64  { return c.regs().sc_reg[7] }
    func (c *sigctxt) r8() uint64  { return c.regs().sc_reg[8] }
    func (c *sigctxt) r9() uint64  { return c.regs().sc_reg[9] }
    func (c *sigctxt) r10() uint64 { return c.regs().sc_reg[10] }
    func (c *sigctxt) r11() uint64 { return c.regs().sc_reg[11] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/runtime/memmove_ppc64x.s

    #define TGT R3
    // source address
    #define SRC R4
    // length to move
    #define LEN R5
    // number of doublewords
    #define DWORDS R6
    // number of bytes < 8
    #define BYTES R7
    // const 16 used as index
    #define IDX16 R8
    // temp used for copies, etc.
    #define TMP R9
    // number of 64 byte chunks
    #define QWORDS R10
    // index values
    #define IDX32 R14
    #define IDX48 R15
    #define OCTWORDS R16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "strings"
    
    var regNamesWasm = []string{
    	"R0",
    	"R1",
    	"R2",
    	"R3",
    	"R4",
    	"R5",
    	"R6",
    	"R7",
    	"R8",
    	"R9",
    	"R10",
    	"R11",
    	"R12",
    	"R13",
    	"R14",
    	"R15",
    
    	"F0",
    	"F1",
    	"F2",
    	"F3",
    	"F4",
    	"F5",
    	"F6",
    	"F7",
    	"F8",
    	"F9",
    	"F10",
    	"F11",
    	"F12",
    	"F13",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_mips64x.s

    TEXT runtime·cgoSigtramp(SB),NOSPLIT,$0
    	JMP	runtime·sigtramp(SB)
    
    TEXT runtime·mmap(SB),NOSPLIT|NOFRAME,$0
    	MOVV	addr+0(FP), R4
    	MOVV	n+8(FP), R5
    	MOVW	prot+16(FP), R6
    	MOVW	flags+20(FP), R7
    	MOVW	fd+24(FP), R8
    	MOVW	off+28(FP), R9
    
    	MOVV	$SYS_mmap, R2
    	SYSCALL
    	BEQ	R7, ok
    	MOVV	$0, p+32(FP)
    	MOVV	R2, err+40(FP)
    	RET
    ok:
    	MOVV	R2, p+32(FP)
    	MOVV	$0, err+40(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    // so that regmask stays within int64
    // Be careful when hand coding regmasks.
    var regNamesLOONG64 = []string{
    	"R0", // constant 0
    	"R1",
    	"SP", // aka R3
    	"R4",
    	"R5",
    	"R6",
    	"R7",
    	"R8",
    	"R9",
    	"R10",
    	"R11",
    	"R12",
    	"R13",
    	"R14",
    	"R15",
    	"R16",
    	"R17",
    	"R18",
    	"R19",
    	"R20",
    	"R21",
    	"g", // aka R22
    	"R23",
    	"R24",
    	"R25",
    	"R26",
    	"R27",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. README.md

    ```kotlin
    implementation("com.squareup.okhttp3:okhttp:4.12.0")
    ```
    
    Snapshot builds are [available][snap]. [R8 and ProGuard][r8_proguard] rules are available.
    
    Also, we have a [bill of materials (BOM)][bom] available to help you keep OkHttp artifacts up to date and be sure about version compatibility.
    
    ```kotlin
        dependencies {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_ppc64x.s

    #endif
    
    #define M00 R18
    #define M01 R19
    #define M02 R20
    #define M03 R24
    #define M04 R25
    #define M05 R26
    #define M06 R27
    #define M07 R28
    #define M08 R29
    #define M09 R21
    #define M10 R11
    #define M11 R8
    #define M12 R7
    #define M13 R12
    #define M14 R23
    #define M15 R10
    
    #define ROUND1(a, b, c, d, index, const, shift) \
    	ADD	$const, index, R9; \
    	ADD	R9, a; \
    	AND     b, c, R9; \
    	ANDN    b, d, R31; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/amd64error.s

    	BLENDVPD X1, (BX), X2           // ERROR "invalid instruction"
    	// Check offset overflow. Must fit in int32.
    	MOVQ 2147483647+1(AX), AX       // ERROR "offset too large"
    	MOVQ 3395469782(R10), R8        // ERROR "offset too large"
    	LEAQ 3395469782(AX), AX         // ERROR "offset too large"
    	ADDQ 3395469782(AX), AX         // ERROR "offset too large"
    	ADDL 3395469782(AX), AX         // ERROR "offset too large"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. src/crypto/sha1/sha1block_arm.s

    #define Ra	R2		// SHA-1 accumulator
    #define Rb	R3		// SHA-1 accumulator
    #define Rc	R4		// SHA-1 accumulator
    #define Rd	R5		// SHA-1 accumulator
    #define Re	R6		// SHA-1 accumulator
    #define Rt0	R7		// Temporary
    #define Rt1	R8		// Temporary
    // r9, r10 are forbidden
    // r11 is OK provided you check the assembler that no synthetic instructions use it
    #define Rt2	R11		// Temporary
    #define Rctr	R12	// loop counter
    #define Rw	R14		// point to w buffer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top