| Commit message (Expand) | Author | Age | Files | Lines |
* | math/bits: optimize Reverse32 and Reverse64 | Michael Munday | 2019-02-26 | 1 | -5/+2 |
* | src, misc: apply gofmt | Robert Griesemer | 2019-02-19 | 5 | -41/+41 |
* | strconv: format hex floats | Russ Cox | 2019-02-12 | 1 | -3/+3 |
* | math/big: permit upper-case 'P' binary exponent (not just 'p') | Robert Griesemer | 2019-02-11 | 3 | -6/+8 |
* | math/big: document that Rat.SetString accepts _decimal_ float representations | Robert Griesemer | 2019-01-17 | 1 | -2/+3 |
* | math: fix ternary correction statement in Log1p | Brian Kessler | 2019-01-07 | 2 | -2/+5 |
* | math/big: fix incorrect comment variable reference | Will Beason | 2018-12-26 | 1 | -1/+1 |
* | math: don't run huge argument tests on s390x | Robert Griesemer | 2018-12-13 | 2 | -84/+99 |
* | math: correct mPi4 comment | Brian Kessler | 2018-12-13 | 1 | -2/+2 |
* | math: use constant rather than variable for exported test threshold | Robert Griesemer | 2018-12-13 | 1 | -1/+2 |
* | math: implement trignometric range reduction for huge arguments | Brian Kessler | 2018-12-13 | 10 | -149/+288 |
* | math/bits: remove named return in TrailingZeros16 | Alberto Donizetti | 2018-12-09 | 1 | -1/+1 |
* | math: document sign bit correspondence for floating-point/bits conversions | Robert Griesemer | 2018-12-06 | 1 | -6/+14 |
* | math/big: allocate less for single-Word nats | Josh Bleecher Snyder | 2018-11-28 | 1 | -0/+4 |
* | math/bits: define Div to panic when y<=hi | Brian Kessler | 2018-11-27 | 1 | -6/+3 |
* | math/bits: panic when y<=hi in Div | Brian Kessler | 2018-11-27 | 2 | -2/+100 |
* | all: use "reports whether" consistently in the few places that didn't | Brad Fitzpatrick | 2018-11-02 | 4 | -4/+4 |
* | math/big: shallow copies of Int/Rat/Float are not supported (documentation) | Robert Griesemer | 2018-10-29 | 3 | -1/+21 |
* | math/big: fix a formula used as documentation | hearot | 2018-10-28 | 1 | -1/+1 |
* | cmd/compile: intrinsify math/bits.Add on amd64 | Keith Randall | 2018-10-25 | 1 | -0/+30 |
* | math/bits: correct BenchmarkSub64 | Brian Kessler | 2018-10-24 | 1 | -1/+1 |
* | all: fix a bunch of misspellings | Igor Zhilianin | 2018-10-06 | 1 | -1/+1 |
* | math: use Abs in Pow rather than if x < 0 { x = -x } | Plekhanov Maxim | 2018-10-04 | 1 | -9/+3 |
* | math: use Abs in Mod rather than if x < 0 { x = -x} | Plekhanov Maxim | 2018-10-04 | 1 | -6/+2 |
* | all: this big patch remove whitespace from assembly files | Zhou Peng | 2018-10-03 | 8 | -18/+18 |
* | cmd/compile: optimize math.Float64(32)bits and math.Float64(32)frombits on arm64 | fanzha02 | 2018-09-17 | 1 | -0/+38 |
* | math/bits: add extended precision Add, Sub, Mul, Div | Brian Kessler | 2018-09-11 | 2 | -0/+460 |
* | math: add Round and RoundToEven examples | Eric Ponce | 2018-08-28 | 1 | -0/+22 |
* | math/big: streamline divLarge initialization | Brian Kessler | 2018-08-22 | 2 | -30/+48 |
* | math/big: optimize multiplication by 2 and 1/2 in float Sqrt | Brian Kessler | 2018-08-22 | 1 | -10/+10 |
* | math: test for pos/neg zero return of Ceil/Floor/Trunc | Ian Lance Taylor | 2018-08-21 | 1 | -5/+5 |
* | math,net: omit explicit true tag expr in switch | Iskander Sharipov | 2018-08-20 | 1 | -1/+1 |
* | math: use s390x mnemonics rather than binary encodings | Michael Munday | 2018-08-20 | 16 | -59/+59 |
* | math/rand: improve package documentation | Benjamin Cable | 2018-08-03 | 2 | -3/+6 |
* | math: add tests for erf and erfc | Keith Randall | 2018-08-03 | 1 | -0/+8 |
* | math: ensure Erfc is not called with out-of-expected-range arguments on s390x | bill_ofarrell | 2018-08-03 | 1 | -12/+13 |
* | math/big: handle negative exponents in Exp | Brian Kessler | 2018-06-14 | 2 | -7/+11 |
* | math/big: round x + (-x) to -0 for mode ToNegativeInf | Brian Kessler | 2018-06-14 | 2 | -2/+31 |
* | math: add examples to Ceil, Floor, Pow, Pow10 functions | Andrii Soldatenko | 2018-06-13 | 1 | -0/+24 |
* | all: update comment URLs from HTTP to HTTPS, where possible | Tim Cooper | 2018-06-01 | 11 | -16/+16 |
* | math/big: implement Atkin's ModSqrt for 5 mod 8 primes | Brian Kessler | 2018-05-30 | 2 | -20/+47 |
* | all: regenerate stringer files | Tim Cooper | 2018-05-29 | 2 | -8/+8 |
* | math/big: reduce allocations in Karatsuba case of sqr | Alexander Döring | 2018-05-23 | 1 | -3/+3 |
* | math/big: specialize Karatsuba implementation for squaring | Alexander Döring | 2018-05-23 | 3 | -45/+115 |
* | math/rand: clarify documentation for Seed example | Agniva De Sarker | 2018-05-12 | 1 | -1/+4 |
* | math/big: implement Lehmer's extended GCD algorithm | Brian Kessler | 2018-05-08 | 3 | -125/+228 |
* | math, math/big: add wasm architecture | Richard Musiol | 2018-05-08 | 4 | -0/+179 |
* | math/bits: move tests into their own package | Martin Möhrmann | 2018-05-01 | 2 | -3/+11 |
* | math/big: handle negative moduli in ModInverse | Brian Kessler | 2018-05-01 | 2 | -3/+9 |
* | math/big: return nil for nonexistent ModInverse | Brian Kessler | 2018-04-30 | 2 | -8/+28 |