Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for fcma (0.29 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    		{Name: "atomics", Feature: &ARM64.HasATOMICS},
    		{Name: "asimdhp", Feature: &ARM64.HasASIMDHP},
    		{Name: "cpuid", Feature: &ARM64.HasCPUID},
    		{Name: "asimrdm", Feature: &ARM64.HasASIMDRDM},
    		{Name: "fcma", Feature: &ARM64.HasFCMA},
    		{Name: "dcpop", Feature: &ARM64.HasDCPOP},
    		{Name: "asimddp", Feature: &ARM64.HasASIMDDP},
    		{Name: "asimdfhm", Feature: &ARM64.HasASIMDFHM},
    	}
    }
    
    func archInit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/math/fma.go

    		mantissa <<= shift
    		exp = 1 - int32(shift)
    	} else {
    		// Add implicit 1 bit
    		mantissa |= 1 << 52
    	}
    	return
    }
    
    // FMA returns x * y + z, computed with only one rounding.
    // (That is, FMA returns the fused multiply-add of x, y, and z.)
    func FMA(x, y, z float64) float64 {
    	bx, by, bz := Float64bits(x), Float64bits(y), Float64bits(z)
    
    	// Inf or NaN or zero involved. At most one rounding will occur.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. test/codegen/math.go

    	return math.FMA(-x, y, z)
    }
    
    func fnma(x, y, z float64) float64 {
    	// riscv64:"FNMADDD",-"FNMSUBD"
    	return math.FMA(x, -y, -z)
    }
    
    func fromFloat64(f64 float64) uint64 {
    	// amd64:"MOVQ\tX.*, [^X].*"
    	// arm64:"FMOVD\tF.*, R.*"
    	// ppc64x:"MFVSRD"
    	// mips64/hardfloat:"MOVV\tF.*, R.*"
    	return math.Float64bits(f64+1) + 1
    }
    
    func fromFloat32(f32 float32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/testdata/fma.go

    David Chase <******@****.***> 1667836928 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 17:02:09 UTC 2022
    - 602 bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/ipset/ipset_test.go

    	}
    	if !sets.NewString(fcmd.CombinedOutputLog[0]...).HasAll("ipset", "destroy", "FOOBAR") {
    		t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[0])
    	}
    	// Failure
    	err = runner.DestroySet("FOOBAR")
    	if err == nil {
    		t.Errorf("expected failure, got nil")
    	}
    }
    
    func TestDestroyAllSets(t *testing.T) {
    	fcmd := fakeexec.FakeCmd{
    		CombinedOutputScript: []fakeexec.FakeAction{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  6. pkg/volume/git_repo/git_repo_test.go

    	}
    	if !reflect.DeepEqual(expectedCmds, fcmd.CombinedOutputLog) {
    		allErrs = append(allErrs,
    			fmt.Errorf("unexpected commands: %v, expected: %v", fcmd.CombinedOutputLog, expectedCmds))
    	}
    
    	var expectedPaths []string
    	for _, expected := range expecteds {
    		expectedPaths = append(expectedPaths, filepath.Join(g.GetPath(), expected.dir))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. test/codegen/bool.go

    	// ppc64x/power10:"SETBCR\tCR0EQ",-"ISEL"
    	// ppc64x/power9:"FCMP","ISEL",-"SETBCR\tCR0EQ"
    	// ppc64x/power8:"FCMP","ISEL",-"SETBCR\tCR0EQ"
    	b := !(x == y)
    	return b
    }
    func TestSetInvNeqFp64(x float64, y float64) bool {
    	// ppc64x/power10:"SETBC\tCR0EQ",-"ISEL"
    	// ppc64x/power9:"FCMP","ISEL",-"SETBC\tCR0EQ"
    	// ppc64x/power8:"FCMP","ISEL",-"SETBC\tCR0EQ"
    	b := !(x != y)
    	return b
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 22:12:32 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. pkg/proxy/conntrack/conntrack_test.go

    }
    
    type testCT struct {
    	execCT
    
    	fcmd *fakeexec.FakeCmd
    }
    
    func makeCT(result fakeexec.FakeAction) *testCT {
    	fcmd := &fakeexec.FakeCmd{
    		CombinedOutputScript: []fakeexec.FakeAction{result},
    	}
    	fexec := &fakeexec.FakeExec{
    		CommandScript: []fakeexec.FakeCommandAction{
    			func(cmd string, args ...string) exec.Cmd { return fakeexec.InitFakeCmd(fcmd, cmd, args...) },
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:08:36 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/utils_test.go

    		t.Run(tc.output, func(t *testing.T) {
    			fcmd := fakeexec.FakeCmd{
    				OutputScript: []fakeexec.FakeAction{
    					func() ([]byte, []byte, error) { return []byte(tc.output), nil, tc.err },
    				},
    			}
    			fexec := &fakeexec.FakeExec{
    				CommandScript: []fakeexec.FakeCommandAction{
    					func(cmd string, args ...string) utilsexec.Cmd { return fakeexec.InitFakeCmd(&fcmd, cmd, args...) },
    				},
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 23 11:33:44 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaModelTest.groovy

            then:
            1 * model.workspace.iws.getXmlTransformer()
    
            when: "configure workspace file"
            model.workspace.iws({ fcm -> fcm.xmlTransformer } as Action<XmlFileContentMerger>)
    
            then:
            1 * model.workspace.iws.getXmlTransformer()
    
            when: "configure workspace xml"
            model.workspace.iws.withXml(xmlAction)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top