Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for su32 (0.1 sec)

  1. src/cmd/compile/internal/test/float_test.go

    		t.Errorf("float32(u64) != su64")
    	}
    	if float32(u32) != su32 {
    		t.Errorf("float32(u32) != su32")
    	}
    	if float32(u16) != su16 {
    		t.Errorf("float32(u16) != su16")
    	}
    	if float32(u8) != su8 {
    		t.Errorf("float32(u8) != su8")
    	}
    	if float32(i64) != si64 {
    		t.Errorf("float32(i64) != si64")
    	}
    	if float32(i32) != si32 {
    		t.Errorf("float32(i32) != si32")
    	}
    	if float32(i16) != si16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  2. test/ken/convert.go

    		case tu32*100 + ti8:
    			u32 = uint32(v); i8 = int8(u32); w = big(i8)
    		case tu32*100 + tu8:
    			u32 = uint32(v); u8 = uint8(u32); w = big(u8)
    		case tu32*100 + ti16:
    			u32 = uint32(v); i16 = int16(u32); w = big(i16)
    		case tu32*100 + tu16:
    			u32 = uint32(v); u16 = uint16(u32); w = big(u16)
    		case tu32*100 + ti32:
    			u32 = uint32(v); i32 = int32(u32); w = big(i32)
    		case tu32*100 + tu32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 14.9K bytes
    - Viewed (0)
  3. test/convT2X.go

    	return a[1]
    }
    
    func main() {
    	// Test equality.
    	if u16 != iu16 {
    		panic("u16 != iu16")
    	}
    	if u16 != ju16 {
    		panic("u16 != ju16")
    	}
    	if u32 != iu32 {
    		panic("u32 != iu32")
    	}
    	if u32 != ju32 {
    		panic("u32 != ju32")
    	}
    	if u64 != iu64 {
    		panic("u64 != iu64")
    	}
    	if u64 != ju64 {
    		panic("u64 != ju64")
    	}
    	if u128 != iu128 {
    		panic("u128 != iu128")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 23:09:05 UTC 2012
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	VCVT_NE_F64_U32:   "VCVT.NE.F64.U32",
    	VCVT_CS_F64_U32:   "VCVT.CS.F64.U32",
    	VCVT_CC_F64_U32:   "VCVT.CC.F64.U32",
    	VCVT_MI_F64_U32:   "VCVT.MI.F64.U32",
    	VCVT_PL_F64_U32:   "VCVT.PL.F64.U32",
    	VCVT_VS_F64_U32:   "VCVT.VS.F64.U32",
    	VCVT_VC_F64_U32:   "VCVT.VC.F64.U32",
    	VCVT_HI_F64_U32:   "VCVT.HI.F64.U32",
    	VCVT_LS_F64_U32:   "VCVT.LS.F64.U32",
    	VCVT_GE_F64_U32:   "VCVT.GE.F64.U32",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/testdata/issue29755.json

    {"Action":"output","Test":"TestOutputWithSubtest/sub_test2/sub2","Output":"        --- PASS: TestOutputWithSubtest/sub_test2/sub2 (0.00s)\n"}
    {"Action":"output","Test":"TestOutputWithSubtest/sub_test2/sub2","Output":"            foo_test.go:26: output from sub2 test\n"}
    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:32: output after sub test\n"}
    {"Action":"pass","Test":"TestOutputWithSubtest/sub_test2/sub2"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/issue29755.test

    === RUN   TestOutputWithSubtest
    === RUN   TestOutputWithSubtest/sub_test
    === RUN   TestOutputWithSubtest/sub_test/sub2
    === RUN   TestOutputWithSubtest/sub_test2
    === RUN   TestOutputWithSubtest/sub_test2/sub2
    --- FAIL: TestOutputWithSubtest (0.00s)
        foo_test.go:6: output before sub tests
        foo_test.go:10: output from root test
        foo_test.go:15: output from root test
        --- PASS: TestOutputWithSubtest/sub_test (0.00s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  7. src/math/bits/bits.go

    func Sub(x, y, borrow uint) (diff, borrowOut uint) {
    	if UintSize == 32 {
    		d32, b32 := Sub32(uint32(x), uint32(y), uint32(borrow))
    		return uint(d32), uint(b32)
    	}
    	d64, b64 := Sub64(uint64(x), uint64(y), uint64(borrow))
    	return uint(d64), uint(b64)
    }
    
    // Sub32 returns the difference of x, y and borrow, diff = x - y - borrow.
    // The borrow input must be 0 or 1; otherwise the behavior is undefined.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

            buildFile << multiProjectBuild()
            createDirs("sub1", "sub2")
            settingsFile << "include 'sub1', 'sub2'"
    
            when:
            succeeds TASKS_DETAILED_REPORT_TASK
    
            then:
            output.contains("""
    $helloWorldGroupHeader
    a
    sub1:a
    sub2:a
    """)
            output.contains("""
    $otherGroupHeader
    sub1:b
    sub2:b
    c
    """)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. pkg/util/hash/hash_test.go

    		hasher2 := adler32.New()
    		hasher3 := adler32.New()
    		// Act
    		DeepHashObject(hasher1, myUni1)
    		hash1 := hasher1.Sum32()
    		DeepHashObject(hasher1, myUni1)
    		hash1a := hasher1.Sum32()
    		DeepHashObject(hasher2, myUni2)
    		hash2 := hasher2.Sum32()
    		DeepHashObject(hasher3, myUni3)
    		hash3 := hasher3.Sum32()
    
    		// Assert
    		if hash1 != hash1a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. 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)
Back to top