Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for sub32a (0.98 sec)

  1. test/armimm.go

    	if want, got = a+c32s, add32s(a); got != want {
    		panic(fmt.Sprintf("add32s(%x) = %x, want %x", a, got, want))
    	}
    	if want, got = a-c32a, sub32a(a); got != want {
    		panic(fmt.Sprintf("sub32a(%x) = %x, want %x", a, got, want))
    	}
    	if want, got = a-c32s, sub32s(a); got != want {
    		panic(fmt.Sprintf("sub32s(%x) = %x, want %x", a, got, want))
    	}
    	if want, got = a|c32a, or32(a); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 13:53:54 UTC 2017
    - 3.9K bytes
    - Viewed (0)
  2. src/hash/fnv/fnv.go

    func (s *sum64a) Sum64() uint64 { return uint64(*s) }
    
    func (s *sum32) Write(data []byte) (int, error) {
    	hash := *s
    	for _, c := range data {
    		hash *= prime32
    		hash ^= sum32(c)
    	}
    	*s = hash
    	return len(data), nil
    }
    
    func (s *sum32a) Write(data []byte) (int, error) {
    	hash := *s
    	for _, c := range data {
    		hash ^= sum32a(c)
    		hash *= prime32
    	}
    	*s = hash
    	return len(data), nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnMultipleFailuresIntegrationTest.groovy

            buildC = multiProjectBuild('buildC', ['sub1', 'sub2', 'sub3']) {
                buildFile << """
                    allprojects {
                        ${javaProject()}
                    }
    
                    test.dependsOn 'sub1:test', 'sub2:test', 'sub3:test'
                """
                file('sub1/src/test/java/SampleTestC_Sub1.java') << junitTestClass('SampleTestC_Sub1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:27 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_json_prints.txt

    stdout '"Action":"output","Package":"p","Test":"Test/Sub1","Output":"Sub2"}'
    stdout '"Action":"output","Package":"p","Test":"Test/Sub1","Output":"--- PASS: Test/Sub1 \([\d.]+s\)\\n"}'
    stdout '"Action":"pass","Package":"p","Test":"Test/Sub1","Elapsed"'
    stdout '"Action":"output","Package":"p","Test":"Test/Sub3","Output":"foo bar"}'
    stdout '"Action":"output","Package":"p","Test":"Test/Sub3","Output":"baz\\n"}'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

        }
    
        def "runs all test tasks in multi project build when test class passed by name"() {
            setup:
            settingsFile << "include ':sub1', 'sub2', ':sub2:sub3', ':sub4'"
            ["sub1", "sub2/sub3"].each { projectFolderName ->
                file("${projectFolderName}/src/test/java/example/MyTest.java") << """
                    package example;
                    public class MyTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. pkg/volume/util/nested_volumes_test.go

    								{MountPath: "/ignore", Name: "vol2"},
    								{MountPath: "/mnt/sub1/sub2/sub3", Name: "vol3"},
    								{MountPath: "/mnt/sub1/sub2/sub4", Name: "vol4"},
    								{MountPath: "/mnt/sub1/sub2/sub4/skip", Name: "vol5"},
    								{MountPath: "/mnt/sub1/sub2/sub4/skip2", Name: "vol5a"},
    								{MountPath: "/mnt/sub1/sub2/sub6", Name: "vol6"},
    								{MountPath: "/mnt7", Name: "vol7"},
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue27718.go

    	inf := 1.0 / zero
    	negZero := -1 / inf
    	if 1/add32(negZero) != inf {
    		panic("negZero+0 != posZero (32 bit)")
    	}
    }
    
    //go:noinline
    func sub32(x float32) float32 {
    	return x - 0
    }
    
    func testSub32() {
    	var zero float32
    	inf := 1.0 / zero
    	negZero := -1 / inf
    	if 1/sub32(negZero) != -inf {
    		panic("negZero-0 != negZero (32 bit)")
    	}
    }
    
    //go:noinline
    func neg32(x float32) float32 {
    	return -x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 28 02:29:42 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  8. src/math/bits/example_math_test.go

    func ExampleSub32() {
    	// First number is 33<<32 + 23
    	n1 := []uint32{33, 23}
    	// Second number is 21<<32 + 12
    	n2 := []uint32{21, 12}
    	// Sub them together without producing carry.
    	d1, carry := bits.Sub32(n1[1], n2[1], 0)
    	d0, _ := bits.Sub32(n1[0], n2[0], carry)
    	nsum := []uint32{d0, d1}
    	fmt.Printf("%v - %v = %v (carry bit was %v)\n", n1, n2, nsum, carry)
    
    	// First number is 3<<32 + 2147483647
    	n1 = []uint32{3, 0x7fffffff}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 11 21:27:05 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/generic.rules

    // x - (C - z) -> x + (z - C) -> (x + z) - C
    (Sub64 x (Sub64 i:(Const64 <t>) z)) && (z.Op != OpConst64 && x.Op != OpConst64) => (Sub64 (Add64 <t> x z) i)
    (Sub32 x (Sub32 i:(Const32 <t>) z)) && (z.Op != OpConst32 && x.Op != OpConst32) => (Sub32 (Add32 <t> x z) i)
    (Sub16 x (Sub16 i:(Const16 <t>) z)) && (z.Op != OpConst16 && x.Op != OpConst16) => (Sub16 (Add16 <t> x z) i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/dec64.rules

    	(Int64Make
    		(Or32 <typ.UInt32>
    			(Or32 <typ.UInt32>
    				(Lsh32x32 <typ.UInt32> (Int64Hi x) s)
    				(Rsh32Ux32 <typ.UInt32>
    					(Int64Lo x)
    					(Sub32 <typ.UInt32> (Const32 <typ.UInt32> [32]) s)))
    			(Lsh32x32 <typ.UInt32>
    				(Int64Lo x)
    				(Sub32 <typ.UInt32> s (Const32 <typ.UInt32> [32]))))
    		(Lsh32x32 <typ.UInt32> (Int64Lo x) s))
    (Lsh64x16 x s) =>
    	(Int64Make
    		(Or32 <typ.UInt32>
    			(Or32 <typ.UInt32>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
Back to top