Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for testmovk (0.19 sec)

  1. src/cmd/internal/obj/arm64/asm_arm64_test.s

    	MOVD    R1, r2+8(FP)
    	RET
    
    // testvmovq() (r1, r2 uint64)
    TEXT ·testvmovq(SB), NOSPLIT, $0-16
    	VMOVQ   $0x7040201008040201, $0x3040201008040201, V1
    	VMOV    V1.D[0], R0
    	VMOV    V1.D[1], R1
    	MOVD    R0, r1+0(FP)
    	MOVD    R1, r2+8(FP)
    	RET
    
    // testmovk() uint64
    TEXT ·testmovk(SB), NOSPLIT, $0-8
    	MOVD	$0, R0
    	MOVK	$(40000<<48), R0
    	MOVD	R0, ret+0(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 892 bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm_arm64_test.go

    		}
    	}
    }
    
    func testvmovs() (r1, r2 uint64)
    func testvmovd() (r1, r2 uint64)
    func testvmovq() (r1, r2 uint64)
    
    func TestVMOV(t *testing.T) {
    	tests := []struct {
    		op           string
    		vmovFunc     func() (uint64, uint64)
    		wantA, wantB uint64
    	}{
    		{"VMOVS", testvmovs, 0x80402010, 0},
    		{"VMOVD", testvmovd, 0x7040201008040201, 0},
    		{"VMOVQ", testvmovq, 0x7040201008040201, 0x3040201008040201},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/WorkItemProgressEventCrossVersionSpec.groovy

                    .run()
            }
        }
    
        def prepareTaskTypeUsingWorker() {
            def gradle3Submit = 'workerExecutor.submit(TestWork) { c -> c.displayName = "org.gradle.test.TestWork" }'
            def submit = 'workerExecutor.noIsolation().submit(TestWork) { }'
            buildFile << """
                import javax.inject.Inject
                import org.gradle.workers.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.jar

    org.apache.maven.plugin.coreit; public synchronized class ItMojo extends org.apache.maven.plugin.AbstractMojo { public void ItMojo(); public void execute(); } org/apache/maven/plugin/coreit/TestMojo.class package org.apache.maven.plugin.coreit; public synchronized class TestMojo extends org.apache.maven.plugin.AbstractMojo { public void TestMojo(); public void execute(); } pom.xml 4.0.0 org.apache.maven.plugins maven-compiler-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of Maven...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-plugin-plugin/0.1/maven-plugin-plugin-0.1.jar

    org.apache.maven.plugin.coreit; public synchronized class ItMojo extends org.apache.maven.plugin.AbstractMojo { public void ItMojo(); public void execute(); } org/apache/maven/plugin/coreit/TestMojo.class package org.apache.maven.plugin.coreit; public synchronized class TestMojo extends org.apache.maven.plugin.AbstractMojo { public void TestMojo(); public void execute(); } pom.xml 4.0.0 org.apache.maven.plugins maven-plugin-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of Maven...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-resources-plugin/0.1/maven-resources-plugin-0.1.jar

    org.apache.maven.plugin.coreit; public synchronized class ItMojo extends org.apache.maven.plugin.AbstractMojo { public void ItMojo(); public void execute(); } org/apache/maven/plugin/coreit/TestMojo.class package org.apache.maven.plugin.coreit; public synchronized class TestMojo extends org.apache.maven.plugin.AbstractMojo { public void TestMojo(); public void execute(); } pom.xml 4.0.0 org.apache.maven.plugins maven-resources-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/core/src/test/swift/CoreTest.swift

    import XCTest
    
    class CoreTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
    
        func testOk() {
            print("hello from CoreTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 179 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/swift/testReport/groovy/core/src/test/swift/CoreTest.swift

    import XCTest
    
    class CoreTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
    
        func testOk() {
            print("hello from CoreTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 179 bytes
    - Viewed (0)
  9. test/fixedbugs/issue66066.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "fmt"
    
    func main() {
    	testMod()
    	testMul()
    }
    
    //go:noinline
    func mod3(x uint32) uint64 {
    	return uint64(x % 3)
    }
    
    func testMod() {
    	got := mod3(1<<32 - 1)
    	want := uint64((1<<32 - 1) % 3)
    	if got != want {
    		fmt.Printf("testMod: got %x want %x\n", got, want)
    	}
    
    }
    
    //go:noinline
    func mul3(a uint32) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 677 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/swift/testReport/groovy/util/src/test/swift/UtilTest.swift

    import XCTest
    
    class UtilTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
        func testOk() {
            print("hello from UtilTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
Back to top