| Commit message (Expand) | Author | Age | Files | Lines |
* | math/big: round x + (-x) to -0 for mode ToNegativeInf | Brian Kessler | 2018-06-14 | 1 | -0/+25 |
* | all: update comment URLs from HTTP to HTTPS, where possible | Tim Cooper | 2018-06-01 | 1 | -2/+2 |
* | math/big: fix %s verbs in Float tests error messages | Alberto Donizetti | 2018-02-14 | 1 | -5/+5 |
* | math/big: fix Add, Sub when receiver aliases 2nd operand | Alberto Donizetti | 2017-05-31 | 1 | -0/+28 |
* | math/big: move exhaustive tests behind -long flag | Russ Cox | 2016-10-11 | 1 | -3/+6 |
* | math/big: avoid allocation in float.{Add, Sub} when there's no aliasing | Alberto Donizetti | 2016-08-17 | 1 | -0/+38 |
* | math/big: fix rounding to smallest denormal for Float.Float32/64 | Robert Griesemer | 2016-03-21 | 1 | -19/+42 |
* | math/big: use correct precision in Float.Float32/64 for denormals | Robert Griesemer | 2016-03-04 | 1 | -0/+47 |
* | math/big: remove (*Float).Scan, ScanFloat; more robust (*Float).Parse | Robert Griesemer | 2015-05-29 | 1 | -17/+4 |
* | math/big: rename (*Float).Format to (*Float).Text | Robert Griesemer | 2015-05-29 | 1 | -25/+25 |
* | math/big: Always print exponent sign when using 'p' exponent for Floats. | Robert Griesemer | 2015-05-22 | 1 | -15/+15 |
* | math/big: fix Float.Float64 conversion for denormal corner cases | Robert Griesemer | 2015-05-22 | 1 | -3/+2 |
* | math/big: add more Float.Float64 conversion tests | Robert Griesemer | 2015-05-22 | 1 | -35/+53 |
* | math/big: fix Float.Float32 conversion for denormal corner cases | Robert Griesemer | 2015-05-22 | 1 | -35/+58 |
* | math/big, cmd/internal/gc/big: fix vet detected printf problem | Shenghou Ma | 2015-05-14 | 1 | -1/+1 |
* | math/big: make ErrNaN actually implement the error interface (oversight) | Robert Griesemer | 2015-04-08 | 1 | -0/+3 |
* | math/big: implement missing special cases for binary operations | Robert Griesemer | 2015-04-02 | 1 | -17/+32 |
* | math/big: remove NaN support - just not worth it | Robert Griesemer | 2015-03-31 | 1 | -114/+81 |
* | math/big: fixed Float.Float64, implemented Float.Float32 | Robert Griesemer | 2015-03-31 | 1 | -11/+96 |
* | math/big: fix known bug in Float.Float64 | Robert Griesemer | 2015-03-24 | 1 | -6/+60 |
* | math/big: cleaner handling of exponent under/overflow | Robert Griesemer | 2015-03-17 | 1 | -0/+62 |
* | math/big: wrap Float.Cmp result in struct to prevent wrong use | Robert Griesemer | 2015-03-14 | 1 | -10/+10 |
* | math/big: fix minor documentation issue | Robert Griesemer | 2015-03-13 | 1 | -1/+1 |
* | math/big: fix silly bug in Int64 accessor | Robert Griesemer | 2015-03-13 | 1 | -0/+2 |
* | math/big: handle NaNs in Float.Cmp | Robert Griesemer | 2015-03-12 | 1 | -13/+45 |
* | math/big: added (internal) Float.form field for easier case distinctions | Robert Griesemer | 2015-03-12 | 1 | -18/+16 |
* | math/big: introduce Bits abstraction instead of using "untyped" []int bit lists | Robert Griesemer | 2015-03-12 | 1 | -16/+16 |
* | math/big: move "bits" operations used for Float tests into separate file | Robert Griesemer | 2015-03-06 | 1 | -197/+0 |
* | math/big: added more comprehensive mul/quo test | Robert Griesemer | 2015-03-05 | 1 | -18/+85 |
* | math/big: reenable TestFloatAdd32 (used to fail on 32bit platforms) | Robert Griesemer | 2015-03-04 | 1 | -5/+0 |
* | math/big: use stringer for enum String() methods | Robert Griesemer | 2015-03-04 | 1 | -13/+33 |
* | math/big: introduce Undef Accuracy, use for NaN operands/results | Robert Griesemer | 2015-03-04 | 1 | -22/+27 |
* | math/big: modified MantExp semantics to enable fast exponent access | Robert Griesemer | 2015-03-04 | 1 | -11/+12 |
* | math/big: implement NaN | Robert Griesemer | 2015-03-04 | 1 | -9/+103 |
* | math/big: replace Float.NewInf with Float.SetInf for more consistent API | Robert Griesemer | 2015-03-02 | 1 | -3/+24 |
* | math/big: export Float.MinPrec | Robert Griesemer | 2015-02-26 | 1 | -0/+25 |
* | math/big: fix build for 32bit platforms | Robert Griesemer | 2015-02-26 | 1 | -4/+0 |
* | math/big: clean up Float.SetPrec, use shorter internal representation | Robert Griesemer | 2015-02-25 | 1 | -0/+52 |
* | math/big: permit passing of an *Int to Float.Int to avoid allocation | Robert Griesemer | 2015-02-25 | 1 | -2/+11 |
* | math/big: implemented Float.Rat | Robert Griesemer | 2015-02-25 | 1 | -12/+57 |
* | math/big: permit passing of (possibly nil) *Float to MantExp to avoid allocation | Robert Griesemer | 2015-02-25 | 1 | -2/+13 |
* | math/big: fix test for 32bit platforms (fix build) | Robert Griesemer | 2015-02-24 | 1 | -2/+0 |
* | math/big: change Float.SetMantExp to always multiply mant by 2**exp | Robert Griesemer | 2015-02-24 | 1 | -2/+12 |
* | math/big: incorporated feedback from prior TBR reviews | Robert Griesemer | 2015-02-23 | 1 | -0/+2 |
* | math/big: always round after the sign is set | Robert Griesemer | 2015-02-15 | 1 | -0/+52 |
* | math/big: remove Float.Round (not needed anymore), fix a bug in SetInt64 | Robert Griesemer | 2015-02-14 | 1 | -5/+32 |
* | math/big: implement/rename accessors for precision and rounding mode | Robert Griesemer | 2015-02-14 | 1 | -35/+36 |
* | math/big: fix aliasing error in Add, Sub | Robert Griesemer | 2015-02-14 | 1 | -8/+14 |
* | math/big: use internal validation more consistently | Robert Griesemer | 2015-02-14 | 1 | -0/+12 |
* | math/big: implemented Float.Int64, simplified Float.Uint64 | Robert Griesemer | 2015-02-12 | 1 | -8/+58 |