/prebuilts/go/darwin-x86/test/ |
float_lit3.go | 26 max64 = two1024 - ulp64 39 // is shorter than 1024 bits, it cannot distinguish max64+ulp64/2-1 and max64+ulp64/2. 41 float64(max64 + ulp64/2 - two1024/two256), // ok 42 float64(max64 + ulp64/2 - 1), // GC_ERROR "constant 1\.79769e\+308 overflows float64" 43 float64(max64 + ulp64/2), // ERROR "constant 1\.79769e\+308 overflows float64" 45 float64(-max64 - ulp64/2 + two1024/two256), // ok 46 float64(-max64 - ulp64/2 + 1), // GC_ERROR "constant -1\.79769e\+308 overflows float64" 47 float64(-max64 - ulp64/2), // ERROR "constant -1\.79769e\+308 overflows float64" 25 max64 = two1024 - ulp64 const
|
float_lit2.go | 39 max64 = two1024 - ulp64 83 {0x7feffffffffffffe, float64(max64 - ulp64), float64(max64 - ulp64 - ulp64/2), "max64 - ulp64 - ulp64/2"}, 84 {0x7feffffffffffffe, float64(max64 - ulp64), float64(max64 - ulp64), "max64 - ulp64"}, 85 {0x7feffffffffffffe, float64(max64 - ulp64), float64(max64 - ulp64/2), "max64 - ulp64/2"} 38 max64 = two1024 - ulp64 const [all...] |
/prebuilts/go/linux-x86/test/ |
float_lit3.go | 26 max64 = two1024 - ulp64 39 // is shorter than 1024 bits, it cannot distinguish max64+ulp64/2-1 and max64+ulp64/2. 41 float64(max64 + ulp64/2 - two1024/two256), // ok 42 float64(max64 + ulp64/2 - 1), // GC_ERROR "constant 1\.79769e\+308 overflows float64" 43 float64(max64 + ulp64/2), // ERROR "constant 1\.79769e\+308 overflows float64" 45 float64(-max64 - ulp64/2 + two1024/two256), // ok 46 float64(-max64 - ulp64/2 + 1), // GC_ERROR "constant -1\.79769e\+308 overflows float64" 47 float64(-max64 - ulp64/2), // ERROR "constant -1\.79769e\+308 overflows float64" 25 max64 = two1024 - ulp64 const
|
float_lit2.go | 39 max64 = two1024 - ulp64 83 {0x7feffffffffffffe, float64(max64 - ulp64), float64(max64 - ulp64 - ulp64/2), "max64 - ulp64 - ulp64/2"}, 84 {0x7feffffffffffffe, float64(max64 - ulp64), float64(max64 - ulp64), "max64 - ulp64"}, 85 {0x7feffffffffffffe, float64(max64 - ulp64), float64(max64 - ulp64/2), "max64 - ulp64/2"} 38 max64 = two1024 - ulp64 const [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
Target.java | 612 public double max64() { return mMaxValue; } method in class:Target.Floaty
|