Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 494 for addsym (0.11 sec)

  1. test/codegen/floats.go

    // For codegen tests on integer types, see arithmetic.go.
    
    // --------------------- //
    //    Strength-reduce    //
    // --------------------- //
    
    func Mul2(f float64) float64 {
    	// 386/sse2:"ADDSD",-"MULSD"
    	// amd64:"ADDSD",-"MULSD"
    	// arm/7:"ADDD",-"MULD"
    	// arm64:"FADDD",-"FMULD"
    	// ppc64x:"FADD",-"FMUL"
    	// riscv64:"FADDD",-"FMULD"
    	return f * 2.0
    }
    
    func DivPow2(f1, f2, f3 float64) (float64, float64, float64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

     */
    public interface LoggingOutputInternal extends LoggingOutput {
        /**
         * Adds System.out and System.err as logging destinations. The output will include plain text only, with no color or dynamic text.
         */
        void attachSystemOutAndErr();
    
        /**
         * Adds the current processes' stdout and stderr as logging destinations. The output will also include color and dynamic text when one of these
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. src/math/floor_amd64.s

    	MOVQ	AX, X0 // X0 = x
    	CVTTSD2SQ	X0, AX
    	CVTSQ2SD	AX, X1 // X1 = float(int(x))
    	CMPSD	X1, X0, 1 // compare LT; X0 = 0xffffffffffffffff or 0
    	MOVSD	$(-1.0), X2
    	ANDPD	X2, X0 // if x < float(int(x)) {X0 = -1} else {X0 = 0}
    	ADDSD	X1, X0
    	MOVSD	X0, ret+8(FP)
    	RET
    isBig_floor:
    	MOVQ    AX, ret+8(FP) // return x
    	RET
    
    // func archCeil(x float64) float64
    TEXT ·archCeil(SB),NOSPLIT,$0
    	MOVQ	x+0(FP), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentMetadataHandler.java

     */
    @HasInternalProtocol
    public interface ComponentMetadataHandler {
        /**
         * Adds a rule action that may modify the metadata of any resolved software component.
         *
         * @param rule the rule to be added
         * @return this
         */
        ComponentMetadataHandler all(Action<? super ComponentMetadataDetails> rule);
    
        /**
         * Adds a rule closure that may modify the metadata of any resolved software component.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/preflight/checks_linux.go

    	)
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    func addIPv4Checks(checks []Checker) []Checker {
    	checks = append(checks,
    		FileContentCheck{Path: ipv4Forward, Content: []byte{'1'}})
    	return checks
    }
    
    // addSwapCheck adds a swap check
    func addSwapCheck(checks []Checker) []Checker {
    	checks = append(checks, SwapCheck{})
    	return checks
    }
    
    // addExecChecks adds checks that verify if certain binaries are in PATH
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/staticinit/sched.go

    			x := x.(*ir.ConvExpr)
    			if x.X.Op() == ir.OLITERAL {
    				if x, ok := truncate(x.X, x.Type()); ok {
    					return x
    				}
    				valid = false
    				return x
    			}
    		case ir.OADDSTR:
    			return addStr(x.(*ir.AddStringExpr))
    		}
    		return x
    	}
    	n = edit(n)
    	return n, valid
    }
    
    // truncate returns the result of force converting c to type t,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_issue56494.txt

    # |
    # + --- b
    # |
    # + --- c
    #
    # At v2, package "a" adds imports of "b" and "c"
    # (and a requirement on "c" v2):
    #
    # a --- b
    # |
    # + --- c
    #
    # And "b" adds an import of "a/sub" (in module "a"):
    #
    # b --- a/sub
    #
    # At v3, "a" no longer imports (nor requires) "c":
    #
    # a --- b
    
    # So upgrading to a3 adds a dependency on b2,
    # b2 adds a dependency on a2 (for "a/sub"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/3-iter.md

      sub-slices of up to n elements of a slice.
    
    The [maps] package adds several functions that work with iterators:
    - [All](/pkg/maps#All) returns an iterator over key-value pairs from m.
    - [Keys](/pkg/maps#Keys) returns an iterator over keys in m.
    - [Values](/pkg/maps#Values) returns an iterator over values in m.
    - [Insert](/pkg/maps#Insert) adds the key-value pairs from seq to m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/webApplication/customized/kotlin/build.gradle.kts

    }
    
    dependencies {
        providedCompile("javax.servlet:servlet-api:2.5")
    }
    
    tasks.war {
        webAppDirectory = file("src/main/webapp")
        from("src/rootContent") // adds a file-set to the root of the archive
        webInf { from("src/additionalWebInf") } // adds a file-set to the WEB-INF dir.
        webXml = file("src/someWeb.xml") // copies a file to WEB-INF/web.xml
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 543 bytes
    - Viewed (0)
Back to top