Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 568 for Xadd (0.04 sec)

  1. src/cmd/compile/internal/ssa/rewriteARM64.go

    			break
    		}
    		v.copyOf(a)
    		return true
    	}
    	// match: (MADD a x (MOVDconst [1]))
    	// result: (ADD a x)
    	for {
    		a := v_0
    		x := v_1
    		if v_2.Op != OpARM64MOVDconst || auxIntToInt64(v_2.AuxInt) != 1 {
    			break
    		}
    		v.reset(OpARM64ADD)
    		v.AddArg2(a, x)
    		return true
    	}
    	// match: (MADD a x (MOVDconst [c]))
    	// cond: isPowerOfTwo64(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. test/codegen/arithmetic.go

    	// ppc64x/power8:"ADDIS\t[$]19,", "ADD\t[$]-10617,"
    	out[2] = a + 1234567
    	// ppc64x/power10:"ADD\t[$]-1234567,"
    	// ppc64x/power9:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	// ppc64x/power8:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	out[3] = a - 1234567
    	// ppc64x/power10:"ADD\t[$]2147450879,"
    	// ppc64x/power9:"ADDIS\t[$]32767,", "ADD\t[$]32767,"
    	// ppc64x/power8:"ADDIS\t[$]32767,", "ADD\t[$]32767,"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	MOVD $0, R0                     // 38000000
    
    	ADD $1, R3                      // 38630001
    	ADD $1, R3, R4                  // 38830001
    	ADD $-1, R4                     // 3884ffff
    	ADD $-1, R4, R5                 // 38a4ffff
    	ADD $65535, R5                  // 601fffff7cbf2a14 or 0600000038a5ffff
    	ADD $65535, R5, R6              // 601fffff7cdf2a14 or 0600000038c5ffff
    	ADD $65536, R6                  // 3cc60001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            ["1"]       | _             | ["0"]         | "add to non-empty convention, then append missing"| { it.add("1") ; it.append(notDefined()) }
            null        | _             | ["0"]         | "append to non-empty conventio, then add missing" | { it.append("1") ; it.add(notDefined()) }
            ["1"]       | _             | _             | "add, then add missing, then append"              | { it.add("0") ; it.add(notDefined()) ; it.append("1") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

        }
    
        /**
         * Add a dependency.
         *
         * @param files files to add as a dependency
         */
        public static void call(DependencyCollector self, FileCollection files) {
            self.add(files);
        }
    
        /**
         * Add a dependency.
         *
         * @param files files to add as a dependency
         * @param configuration an action to configure the dependency
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier_test.go

    	expected := dedent.Dedent(`
    		add table ip kube-proxy { comment "rules for kube-proxy" ; }
    
    		add chain ip kube-proxy mark-for-masquerade
    		add rule ip kube-proxy mark-for-masquerade mark set mark or 0x4000
    		add chain ip kube-proxy masquerading
    		add rule ip kube-proxy masquerading mark and 0x4000 == 0 return
    		add rule ip kube-proxy masquerading mark set mark xor 0x4000
    		add rule ip kube-proxy masquerading masquerade fully-random
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven4ScopeManagerConfiguration.java

            ArrayList<org.eclipse.aether.scope.DependencyScope> result = new ArrayList<>();
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.COMPILE.id(), DependencyScope.COMPILE.isTransitive(), all()));
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.RUNTIME.id(),
                    DependencyScope.RUNTIME.isTransitive(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskDependency.java

                    formats.add("A Task instance");
                    formats.add("A TaskReference instance");
                    formats.add("A Buildable instance");
                    formats.add("A TaskDependency instance");
                    formats.add("A Provider that represents a task output");
                    formats.add("A Provider instance that returns any of these types");
                    formats.add("A Closure instance that returns any of these types");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

            // code below...
            translatedPrefixes.add("build.directory");
            translatedPrefixes.add("build.outputDirectory");
            translatedPrefixes.add("build.testOutputDirectory");
            translatedPrefixes.add("build.sourceDirectory");
            translatedPrefixes.add("build.testSourceDirectory");
            translatedPrefixes.add("build.scriptSourceDirectory");
            translatedPrefixes.add("reporting.outputDirectory");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top