Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for sdivisible (0.36 sec)

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

    		k:   int64(k),
    		m:   m,
    		a:   a,
    		max: max,
    	}
    }
    
    func sdivisible8(c int8) sdivisibleData   { return sdivisible(8, int64(c)) }
    func sdivisible16(c int16) sdivisibleData { return sdivisible(16, int64(c)) }
    func sdivisible32(c int32) sdivisibleData { return sdivisible(32, int64(c)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

     => (Leq8U
    			(RotateLeft8 <typ.UInt8>
    				(Add8 <typ.UInt8>
    					(Mul8 <typ.UInt8>
    						(Const8 <typ.UInt8> [int8(sdivisible8(c).m)])
    						x)
    					(Const8 <typ.UInt8> [int8(sdivisible8(c).a)])
    				)
    				(Const8 <typ.UInt8> [int8(8-sdivisible8(c).k)])
    			)
    			(Const8 <typ.UInt8> [int8(sdivisible8(c).max)])
    		)
    
    (Eq16 x (Mul16 (Const16 [c])
      (Sub16
        (Rsh32x64
          mul:(Mul32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. test/codegen/arithmetic.go

    	// ppc64x:"ANDCC",-"RLDICL",-"SRAD",-"CMP"
    	a := n1%64 == 0 // signed divisible
    
    	// 386:"TESTL\t[$]63",-"DIVL",-"SHRL"
    	// amd64:"TESTQ\t[$]63",-"DIVQ",-"SHRQ"
    	// arm:"AND\t[$]63",-".*udiv",-"SRA"
    	// arm64:"TST\t[$]63",-"UDIV",-"ASR",-"AND"
    	// ppc64x:"ANDCC",-"RLDICL",-"SRAD",-"CMP"
    	b := n2%64 != 0 // signed indivisible
    
    	return a, b
    }
    
    // Check that constant modulo divs get turned into MULs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/UserInputConsoleRendererTest.groovy

            when:
            renderer.onOutput(userInputRequestEvent)
    
            then:
            1 * console.getBuildProgressArea() >> buildProgressArea
            1 * buildProgressArea.setVisible(false)
            1 * console.flush()
    
            and:
            0 * console._
            0 * listener.onOutput(_)
            0 * prompt._
            0 * textArea._
            0 * userInput._
            renderer.eventQueue.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildProgressArea.java

        // TODO(ew): Consider whether this belongs in Console or here
        StyledLabel getProgressBar();
        List<StyledLabel> getBuildProgressLabels();
        void resizeBuildProgressTo(int numberOfLabels);
        void setVisible(boolean isVisible);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 966 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/defaultDependency/kotlin/buildSrc/src/main/java/org/myorg/DataProcessingPlugin.java

    // tag::snippet[]
    public class DataProcessingPlugin implements Plugin<Project> {
        public void apply(Project project) {
            Configuration dataFiles = project.getConfigurations().create("dataFiles", c -> {
                c.setVisible(false);
                c.setCanBeConsumed(false);
                c.setCanBeResolved(true);
                c.setDescription("The data artifacts to be processed for this plugin.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 830 bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

            fillArea()
    
            when:
            progressArea.setVisible(false)
            redraw()
    
            then:
            0 * ansi._
        }
    
        def "doesn't scroll the area when visibility is set to false"() {
            given:
            fillArea()
            def absoluteDeltaRow = 2
    
            when:
            redraw()
            progressArea.setVisible(false)
            progressArea.scrollDownBy(absoluteDeltaRow)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/developingPlugins/defaultDependency/groovy/buildSrc/src/main/java/org/myorg/DataProcessingPlugin.java

    // tag::snippet[]
    public class DataProcessingPlugin implements Plugin<Project> {
        public void apply(Project project) {
            Configuration dataFiles = project.getConfigurations().create("dataFiles", c -> {
                c.setVisible(false);
                c.setCanBeConsumed(false);
                c.setCanBeResolved(true);
                c.setDescription("The data artifacts to be processed for this plugin.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 830 bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/MultiLineBuildProgressArea.java

            }
        }
    
        public boolean isVisible() {
            return isVisible;
        }
    
        @Override
        public void setVisible(boolean isVisible) {
            this.isVisible = isVisible;
            for (DefaultRedrawableLabel label : entries) {
                label.setVisible(isVisible);
            }
        }
    
        public boolean isOverlappingWith(Cursor cursor) {
            for (DefaultRedrawableLabel label : entries) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/VersionCatalogPlugin.java

                cnf.setDescription("Artifacts for the version catalog");
                cnf.getOutgoing().artifact(generator);
                cnf.setVisible(false);
                cnf.attributes(attrs -> {
                    attrs.attribute(Category.CATEGORY_ATTRIBUTE, project.getObjects().named(Category.class, Category.REGULAR_PLATFORM));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top