Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,124 for Xadd (0.04 sec)

  1. src/cmd/internal/obj/arm/a.out.go

    	C_TLS_IE
    
    	C_TEXTSIZE
    
    	C_GOK
    
    	C_NCLASS /* must be the last */
    )
    
    const (
    	AAND = obj.ABaseARM + obj.A_ARCHSPECIFIC + iota
    	AEOR
    	ASUB
    	ARSB
    	AADD
    	AADC
    	ASBC
    	ARSC
    	ATST
    	ATEQ
    	ACMP
    	ACMN
    	AORR
    	ABIC
    
    	AMVN
    
    	/*
    	 * Do not reorder or fragment the conditional branch
    	 * opcodes, or the predication code will break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  2. src/math/sinh_s390x.s

    	FMOVD   F0, ret+8(FP)
    	RET
    
    L20:
    	MOVD    $sinhxadd<>+0(SB), R2
    	FMOVD   0(R2), F2
    	MOVD    sinhrlog2<>+0(SB), R2
    	LDGR    R2, F0
    	WFMSDB  V4, V0, V2, V6
    	FMOVD   sinhrodataL21<>+8(SB), F0
    	FADD    F6, F2
    	MOVD    $sinhe9<>+0(SB), R2
    	FMSUB   F0, F2, F4
    	FMOVD   0(R2), F1
    	FMOVD   sinhrodataL21<>+0(SB), F3
    	MOVD    $sinhe7<>+0(SB), R2
    	FMADD   F3, F2, F4
    	FMOVD   0(R2), F0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 6K bytes
    - Viewed (0)
  3. test/codegen/memops_bigoffset.go

    	// ppc64x:`MOVWZ\s+[0-9]+\(R[0-9]+\)`,-`ADD`
    	a3 := sw.w[1<<10]
    	// ppc64le/power10:`MOVWZ\s+[0-9]+\(R[0-9]+\),\sR[0-9]+`,-`ADD`
    	// ppc64x/power9:`ADD`,`MOVWZ\s+\(R[0-9]+\),\sR[0-9]+`
    	// ppc64x/power8:`ADD`,`MOVWZ\s+\(R[0-9]+\),\sR[0-9]+`
    	b3 := sw.w[1<<16]
    	// ppc64le/power10:`MOVWZ\s+[0-9]+\(R[0-9]+\),\sR[0-9]+`,-`ADD`
    	// ppc64x/power9:`ADD`,`MOVWZ\s+\(R[0-9]+\),\sR[0-9]+`
    	// ppc64x/power8:`ADD`,`MOVWZ\s+\(R[0-9]+\),\sR[0-9]+`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 18:20:54 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. test/typeparam/setsimp.dir/main.go

    func TestSet() {
    	s1 := a.Make[int]()
    	if got := s1.Len(); got != 0 {
    		panic(fmt.Sprintf("Len of empty set = %d, want 0", got))
    	}
    	s1.Add(1)
    	s1.Add(1)
    	s1.Add(1)
    	if got := s1.Len(); got != 1 {
    		panic(fmt.Sprintf("(%v).Len() == %d, want 1", s1, got))
    	}
    	s1.Add(2)
    	s1.Add(3)
    	s1.Add(4)
    	if got := s1.Len(); got != 4 {
    		panic(fmt.Sprintf("(%v).Len() == %d, want 4", s1, got))
    	}
    	if !s1.Contains(1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/AbstractCollectionModelProjectionTest.groovy

            when:
            mutate {
                add 'foo'
                add 'bar'
                remove 'foo'
            }
    
            then:
            def list = registry.realize(collectionPath, collectionType)
            list == checkable(['bar'])
        }
    
        def "can remove all elements"() {
            when:
            mutate {
                add 'foo'
                add 'bar'
                clear()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/GradleEnterprisePluginServices.java

            registration.add(GradleEnterpriseAutoAppliedPluginRegistry.class);
            registration.add(GradleEnterprisePluginAutoAppliedStatus.class);
            registration.add(DefaultGradleEnterprisePluginServiceRef.class);
            registration.add(DefaultGradleEnterprisePluginBuildState.class);
            registration.add(DefaultGradleEnterprisePluginConfig.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelGraphTest.groovy

            b.addLink c
    
            when:
            graph.add(a)
            graph.add(b)
            graph.add(c)
            graph.addListener(listener)
    
            then:
            1 * listener.onDiscovered(b)
            1 * listener.onDiscovered(c)
            0 * listener.onDiscovered(_)
    
            when:
            graph.add(d)
            graph.add(e)
            graph.add(f)
    
            then:
            1 * listener.onDiscovered(d)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/cache/lruexpirecache_test.go

    	c.Add("elem2", "2", 10*time.Hour)
    	c.Add("elem3", "3", 10*time.Hour)
    	c.Add("elem4", "4", 10*time.Hour)
    
    	c.Add("elem1", "1-new", 10*time.Hour)
    
    	c.Add("elem5", "5", 10*time.Hour)
    
    	assertKeys(t, c.Keys(), []interface{}{"elem3", "elem4", "elem1", "elem5"})
    
    	expectNotEntry(t, c, "elem2")
    	expectEntry(t, c, "elem1", "1-new")
    	expectEntry(t, c, "elem3", "3")
    	expectEntry(t, c, "elem4", "4")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/DefaultMethodModelRuleExtractionContext.java

        }
    
        @Override
        public void add(Field field, String problem) {
            problems.add(field, problem);
        }
    
        @Override
        public void add(Method method, String problem) {
            problems.add(method, problem);
        }
    
        @Override
        public void add(Method method, String role, String problem) {
            problems.add(method, role, problem);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/ListTestSuiteBuilder.java

        testers.add(CollectionSerializationEqualTester.class);
        testers.add(ListAddAllAtIndexTester.class);
        testers.add(ListAddAllTester.class);
        testers.add(ListAddAtIndexTester.class);
        testers.add(ListAddTester.class);
        testers.add(ListCreationTester.class);
        testers.add(ListEqualsTester.class);
        testers.add(ListGetTester.class);
        testers.add(ListHashCodeTester.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top