Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,659 for fadds (0.09 sec)

  1. src/cmd/internal/obj/x86/anames.go

    	"DIVL",
    	"DIVPD",
    	"DIVPS",
    	"DIVQ",
    	"DIVSD",
    	"DIVSS",
    	"DIVW",
    	"DPPD",
    	"DPPS",
    	"EMMS",
    	"ENTER",
    	"EXTRACTPS",
    	"F2XM1",
    	"FABS",
    	"FADDD",
    	"FADDDP",
    	"FADDF",
    	"FADDL",
    	"FADDW",
    	"FBLD",
    	"FBSTP",
    	"FCHS",
    	"FCLEX",
    	"FCMOVB",
    	"FCMOVBE",
    	"FCMOVCC",
    	"FCMOVCS",
    	"FCMOVE",
    	"FCMOVEQ",
    	"FCMOVHI",
    	"FCMOVLS",
    	"FCMOVNB",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValueRISCV64_OpRISCV64FADDS(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (FADDS a (FMULS x y))
    	// cond: a.Block.Func.useFMA(v)
    	// result: (FMADDS x y a)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			a := v_0
    			if v_1.Op != OpRISCV64FMULS {
    				continue
    			}
    			y := v_1.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/doc.go

    Extended registers are written as <Rm>{.<extend>{<<<amount>}}.
    <extend> can be UXTB, UXTH, UXTW, UXTX, SXTB, SXTH, SXTW or SXTX.
    
    Examples:
    
    	ADDS R19.UXTB<<4, R9, R26     <=>    adds x26, x9, w19, uxtb #4
    	ADDSW R14.SXTX, R14, R6       <=>    adds w6, w14, w14, sxtx
    
    Memory references: [<Xn|SP>{,#0}] is written as (Rn|RSP), a base register and an immediate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ScriptBlockBuilder.java

        /**
         * Adds a method invocation statement to this block
         */
        void methodInvocation(@Nullable String comment, BuildScriptBuilder.Expression target, String methodName, Object... methodArgs);
    
        /**
         * Adds a statement to this block.
         */
        void statement(@Nullable String comment, BuildScriptBuilder.Statement statement);
    
        /**
         * Adds a block statement to this block.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 03:37:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassVisitorScope.java

        protected ClassVisitorScope(ClassVisitor cv) {
            super(ASM_LEVEL, cv);
        }
    
        /**
         * Adds a field to the generated type.
         */
        protected void addField(int access, String fieldName, Class<?> type) {
            addField(access, fieldName, getDescriptor(type));
        }
    
        /**
         * Adds a field to the generated type.
         */
        protected void addField(int access, String fieldName, Type type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/options/generic.go

    	fs.Lookup(KubeconfigPath).DefValue = constants.GetAdminKubeConfigPath()
    }
    
    // AddKubeConfigDirFlag adds the --kubeconfig-dir flag to the given flagset
    func AddKubeConfigDirFlag(fs *pflag.FlagSet, kubeConfigDir *string) {
    	fs.StringVar(kubeConfigDir, KubeconfigDir, *kubeConfigDir, "The path where to save the kubeconfig file.")
    }
    
    // AddConfigFlag adds the --config flag to the given flagset
    func AddConfigFlag(fs *pflag.FlagSet, cfgPath *string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerScope.kt

        }
    
        /**
         * Adds a dependency to the given configuration.
         *
         * @param dependencyNotation notation for the dependency to be added.
         * @return The dependency.
         * @see [DependencyHandler.add]
         */
        operator fun String.invoke(dependencyNotation: Any): Dependency? =
            dependencies.add(this, dependencyNotation)
    
        /**
         * Adds a dependency to the given configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm_arm64.s

    	MUL	x0, x1, acc1
    	UMULH	x0, x1, acc2
    
    	MUL	x0, x2, t0
    	ADDS	t0, acc2, acc2
    	UMULH	x0, x2, acc3
    
    	MUL	x0, x3, t0
    	ADCS	t0, acc3, acc3
    	UMULH	x0, x3, acc4
    	ADC	$0, acc4, acc4
    	// x[2:] * x[1]
    	MUL	x1, x2, t0
    	ADDS	t0, acc3
    	UMULH	x1, x2, t1
    	ADCS	t1, acc4
    	ADC	$0, ZR, acc5
    
    	MUL	x1, x3, t0
    	ADDS	t0, acc4
    	UMULH	x1, x3, t1
    	ADC	t1, acc5
    	// x[3] * x[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         */
        @Incubating
        GradleLifecycle getLifecycle();
    
        /**
         * Adds a closure to be called immediately before a project is evaluated. The project is passed to the closure as a
         * parameter.
         *
         * @param closure The closure to execute.
         */
        void beforeProject(Closure closure);
    
        /**
         * Adds an action to be called immediately before a project is evaluated.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/resources/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors-expected-output.txt

    
    
        /**
         * Adds a dependency to the 'api' configuration.
         *
         * @param dependencyNotation notation for the dependency to be added.
         * @return The dependency.
         *
         * @see [DependencyHandler.add]
         */
        fun DependencyHandler.`api`(dependencyNotation: Any): Dependency? =
            add("api", dependencyNotation)
    
    
        /**
         * Adds a dependency to the 'api' configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top