Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ToPositiveInf (0.1 sec)

  1. src/math/big/floatconv_test.go

    		{"8191.53125", ToNegativeInf, 53, 'x', 4, "0x1.fff8p+12"},
    		{"-8191.53125", ToNegativeInf, 53, 'x', 4, "-0x1.fff9p+12"},
    		{"8191.53125", ToPositiveInf, 53, 'x', 4, "0x1.fff9p+12"},
    		{"-8191.53125", ToPositiveInf, 53, 'x', 4, "-0x1.fff8p+12"},
    
    		// issue 34343
    		{"0x.8p-2147483648", ToNearestEven, 4, 'p', -1, "0x.8p-2147483648"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  2. src/math/big/float.go

    	ToZero                            // == IEEE 754-2008 roundTowardZero
    	AwayFromZero                      // no IEEE 754-2008 equivalent
    	ToNegativeInf                     // == IEEE 754-2008 roundTowardNegative
    	ToPositiveInf                     // == IEEE 754-2008 roundTowardPositive
    )
    
    //go:generate stringer -type=RoundingMode
    
    // Accuracy describes the rounding error produced by the most recent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top