Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for useAvg (0.12 sec)

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

    	ctxt           *obj.Link   // Generic arch information
    	optimize       bool        // Do optimization
    	noDuffDevice   bool        // Don't use Duff's device
    	useSSE         bool        // Use SSE for non-float operations
    	useAvg         bool        // Use optimizations that need Avg* operations
    	useHmul        bool        // Use optimizations that need Hmul* operations
    	SoftFloat      bool        //
    	Race           bool        // race detector enabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

            (Rsh32Ux64 <typ.UInt32> (ZeroExt16to32 x) (Const64 <typ.UInt64> [1])))
          (Const64 <typ.UInt64> [16+umagic16(c).s-2])))
    (Div16u x (Const16 [c])) && umagicOK16(c) && config.RegSize == 4 && config.useAvg =>
      (Trunc32to16
        (Rsh32Ux64 <typ.UInt32>
          (Avg32u
            (Lsh32x64 <typ.UInt32> (ZeroExt16to32 x) (Const64 <typ.UInt64> [16]))
            (Mul32 <typ.UInt32>
    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. src/net/testdata/freebsd-usevc-resolv.conf

    options usevc...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 18:51:13 UTC 2019
    - 13 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// cond: umagicOK32(c) && config.RegSize == 4 && config.useAvg && config.useHmul
    	// result: (Rsh32Ux64 <typ.UInt32> (Avg32u x (Hmul32u <typ.UInt32> (Const32 <typ.UInt32> [int32(umagic32(c).m)]) x)) (Const64 <typ.UInt64> [umagic32(c).s-1]))
    	for {
    		x := v_0
    		if v_1.Op != OpConst32 {
    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    		if !(umagicOK32(c) && config.RegSize == 4 && config.useAvg && config.useHmul) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_multirepo.txt

    go list -deps -f {{.Dir}}
    ! stdout 'pkg[\\/]mod'
    
    # v2 import should use a downloaded module
    # both without an explicit go.mod entry ...
    cp tmp/use_v2.go x.go
    go get .
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    
    # ... and with one ...
    cp tmp/use_v2.mod go.mod
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 892 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractModuleDependencyResolveTest.groovy

        ResolveTestFixture resolve
    
        protected final RemoteRepositorySpec repoSpec = new RemoteRepositorySpec()
    
        boolean useIvy() {
            GradleMetadataResolveInterceptor.useIvy()
        }
    
        boolean useMaven() {
            !useIvy()
        }
    
        boolean isGradleMetadataPublished() {
            GradleMetadataResolveInterceptor.isGradleMetadataPublished()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 16:23:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/AbstractComponentSelectionRulesIntegrationTest.groovy

            Set uris = []
            def repo = GradleMetadataResolveRunner.useIvy() ? ivyHttpRepo : mavenHttpRepo
            def desc = GradleMetadataResolveRunner.useIvy() ? 'ivy' : 'pom'
            def resolve = repo.module(group, module, version)
            uris << resolve."$desc".uri
            if (expectGradleMetadataRequest) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

                                expectedAttributes = [format: 'custom', 'org.gradle.status': GradleMetadataResolveRunner.useIvy() ? 'integration' : 'release']
                            } else {
                                if (GradleMetadataResolveRunner.useIvy()) {
                                    // Ivy doesn't derive any variant
                                    expectedTargetVariant = 'default'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/GradleMetadataResolveRunner.groovy

        static boolean isGradleMetadataPublished() {
            System.getProperty(GRADLE_METADATA) == "true"
        }
    
        static boolean useIvy() {
            System.getProperty(REPOSITORY_TYPE) == "ivy"
        }
    
        static boolean useMaven() {
            System.getProperty(REPOSITORY_TYPE) == "maven"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

                @Override
                Object call() {
                    return GradleMetadataResolveRunner.useIvy() ? "latest.integration" : "latest.release"
                }
    
                @Override
                String toString() {
                    return GradleMetadataResolveRunner.useIvy() ? "latest.integration" : "latest.release"
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top