Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestFloatRound24 (0.11 sec)

  1. src/math/big/float_test.go

    		testFloatRound(t, -x, -a, prec, ToNegativeInf)
    		testFloatRound(t, -x, -z, prec, ToPositiveInf)
    	}
    }
    
    // TestFloatRound24 tests that rounding a float64 to 24 bits
    // matches IEEE 754 rounding to nearest when converting a
    // float64 to a float32 (excluding denormal numbers).
    func TestFloatRound24(t *testing.T) {
    	const x0 = 1<<26 - 0x10 // 11...110000 (26 bits)
    	for d := 0; d <= 0x10; d++ {
    		x := float64(x0 + d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top