Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for r3 (0.03 sec)

  1. src/cmd/asm/internal/asm/testdata/s390x.s

    	MOVW	R1, 4095(R2)(R3)       // 50132fff
    	MOVW	R1, 4096(R2)(R3)       // e31320000150
    	MOVWZ	R1, 4095(R2)(R3)       // 50132fff
    	MOVWZ	R1, 4096(R2)(R3)       // e31320000150
    	MOVH	R1, 4095(R2)(R3)       // 40132fff
    	MOVHZ   R1, 4095(R2)(R3)       // 40132fff
    	MOVH	R1, 4096(R2)(R3)       // e31320000170
    	MOVHZ	R1, 4096(R2)(R3)       // e31320000170
    	MOVB	R1, 4095(R2)(R3)       // 42132fff
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jul 30 19:29:15 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/armerror.s

    	BFX.S	$2, $4, R3         // ERROR "invalid .S suffix"
    	BFXU.W	$2, $4, R3, R0     // ERROR "invalid .W suffix"
    	MOVB.S	R1, 4(R2)          // ERROR "invalid .S suffix"
    	MOVHU.S	R1, 4(R2)          // ERROR "invalid .S suffix"
    	MOVW.S	R1, 4(R2)          // ERROR "invalid .S suffix"
    	MOVBU.S	4(R2), R3          // ERROR "invalid .S suffix"
    	MOVH.S	4(R2), R3          // ERROR "invalid .S suffix"
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Oct 23 15:18:14 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64.s

    	STP.W	(R3, R4), 8(RSP)    // e39380a9
    	STP.P	(R3, R4), 8(RSP)    // e39380a8
    	STP	(R3, R4), -8(RSP)   // e3933fa9
    	STP	(R3, R4), 11(RSP)   // fb2f0091631300a9
    	STP	(R3, R4), 1024(RSP) // fb031091631300a9
    	STP	(R3, R4), x(SB)
    	STP	(R3, R4), x+8(SB)
    	STPW	(R3, R4), (R5)      // a3100029
    	STPW	(R3, R4), 4(R5)     // a3900029
    	STPW.W	(R3, R4), 4(R5)     // a3908029
    	STPW.P	(R3, R4), 4(R5)     // a3908028
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 26 10:48:50 UTC 2025
    - 95.3K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64error.s

    	CINC	CS, R2, R3, R4                                   // ERROR "illegal combination"
    	CSEL	LT, R1, R2                                       // ERROR "illegal combination"
    	CINC	AL, R2, R3                                       // ERROR "invalid condition"
    	CINC	NV, R2, R3                                       // ERROR "invalid condition"
    	CINVW	AL, R2, R3                                       // ERROR "invalid condition"
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 26 10:48:50 UTC 2025
    - 37.9K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/ppc64.s

    	CMPU R3, R0                     // 7c230040
    	CMPU R3, R0, CR2                // CMPU R3,CR2,R0  // 7d230040
    	CMPW R3, R4                     // 7c032000
    	CMPW R3, R0                     // 7c030000
    	CMPW R3, R0, CR3                // CMPW R3,CR3,R0  // 7d830000
    	CMPWU R3, R4                    // 7c032040
    	CMPWU R3, R0                    // 7c030040
    	CMPWU R3, R0, CR4               // CMPWU R3,CR4,R0 // 7e030040
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Nov 21 18:27:17 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. compat/maven-compat/src/test/java/org/apache/maven/artifact/repository/MavenArtifactRepositoryTest.java

            MavenArtifactRepositorySubclass r3 = new MavenArtifactRepositorySubclass("bar");
    
            assertTrue(r1.hashCode() == r2.hashCode());
            assertFalse(r1.hashCode() == r3.hashCode());
    
            assertTrue(r1.equals(r2));
            assertTrue(r2.equals(r1));
    
            assertFalse(r1.equals(r3));
            assertFalse(r3.equals(r1));
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/armv6.s

    	MOVFD	F0, F1        // c01ab7ee
    	MOVDF	F4, F5        // c45bb7ee
    
    	LDREX	(R8), R9      // 9f9f98e1
    	LDREXB	(R11), R12    // 9fcfdbe1
    	LDREXD	(R11), R12    // 9fcfbbe1
    	STREX	R3, (R4), R5  // STREX  (R4), R3, R5 // 935f84e1
    	STREXB	R8, (R9), g   // STREXB (R9), R8, g  // 98afc9e1
    	STREXD	R8, (R9), g   // STREXD (R9), R8, g  // 98afa9e1
    
    	CMPF    F8, F9        // c89ab4ee10faf1ee
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Oct 23 15:18:14 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. docs/bigdata/README.md

    - [https://hadoop.apache.org/docs/current/hadoop-aws/tools/hadoop-aws/index.html](https://hadoop.apache.org/docs/current/hadoop-aws/tools/hadoop-aws/index.html)
    - [https://hadoop.apache.org/docs/r3.1.1/hadoop-aws/tools/hadoop-aws/committers.html](https://hadoop.apache.org/docs/r3.1.1/hadoop-aws/tools/hadoop-aws/committers.html)
    
    Once the config changes are applied, proceed to restart **Hadoop** services.
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  9. tests/serializer_test.go

    	if err := DB.First(&result, out.ID).Error; err != nil {
    		t.Fatalf("failed to query data, got error %v", err)
    	}
    	AssertEqual(t, result, out)
    
    	// update record
    	data.Roles = append(data.Roles, "r3")
    	data.JobInfo.Location = "Gates Hillman Complex"
    	if err := DB.Assign(data).FirstOrCreate(&out).Error; err != nil {
    		t.Fatalf("failed to FirstOrCreate Assigned data, got error %v", err)
    	}
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  10. lib/fips140/v1.0.0.zip

    + a1×b1 + a2×b0 + 19×(a3×b4 + a4×b3) r2 := mul64(a0, b2) r2 = addMul64(r2, a1, b1) r2 = addMul64(r2, a2, b0) r2 = addMul64(r2, a3_19, b4) r2 = addMul64(r2, a4_19, b3) // r3 = a0×b3 + a1×b2 + a2×b1 + a3×b0 + 19×a4×b4 r3 := mul64(a0, b3) r3 = addMul64(r3, a1, b2) r3 = addMul64(r3, a2, b1) r3 = addMul64(r3, a3, b0) r3 = addMul64(r3, a4_19, b4) // r4 = a0×b4 + a1×b3 + a2×b2 + a3×b1 + a4×b0 r4 := mul64(a0, b4) r4 = addMul64(r4, a1, b3) r4 = addMul64(r4, a2, b2) r4 = addMul64(r4, a3, b1) r4 = addMul64(r4,...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top