summaryrefslogtreecommitdiff
path: root/src/math
Commit message (Expand)AuthorAgeFilesLines
...
* math: Add examples for Copysign, Dim, Exp* and TruncJavier2019-09-171-0/+46
* all: fix typosAinar Garipov2019-09-081-1/+1
* math/big: fix a duplicate "the" in a commentpeter zhang2019-09-021-1/+1
* math/big: document that Rat.Denom might modify the receiverEric Lagergren2019-08-281-0/+2
* math/big: fast path for Cmp if sameIllya Yalovyy2019-08-282-0/+16
* cmd/gofmt: fix normalization of imaginary number literalsRobert Griesemer2019-06-211-1/+1
* math: add examples for Log, Log2, Mod, and AbsMichael Brandenburg2019-06-191-0/+38
* all: shorten some testsRuss Cox2019-05-225-4/+21
* math/bits: document that Add, Sub, Mul, RotateLeft, ReverseBytes are constant...Filippo Valsorda2019-05-211-0/+44
* math/bits: add example for OnesCount functionadarsh ravichandran2019-05-201-0/+6
* math/bits: make Add and Sub fallbacks constant timesmasher1642019-05-201-30/+19
* math/big: stack allocate scaleDenom return valueJT Olio2019-05-082-15/+27
* math/big: fix the bug in assembly implementation of shlVU on arm64erifan012019-05-082-47/+128
* math/big: document Int.StringBrian Kessler2019-05-031-1/+4
* math: consolidate assembly stub implementationsMichael Munday2019-04-2365-1007/+789
* math/big: optimize mulAddVWW on arm64 for better performanceerifan012019-04-222-8/+61
* all: s/cancelation/cancellation/Josh Bleecher Snyder2019-04-162-4/+4
* math: use new mnemonics for 'rotate then insert' on s390xMichael Munday2019-04-1617-249/+83
* math/big: don't clobber shared underlying array in pow5 computationRobert Griesemer2019-04-152-18/+28
* all: change the old assembly style AX:CX to CX, AXNeven Sajko2019-04-092-8/+8
* math/big: do not panic in Exp when y < 0 and x doesn't have an inverseFilippo Valsorda2019-04-042-7/+20
* math/bits: add gccgo-friendly code for compiler bootstrapThan McIntosh2019-04-043-8/+37
* math/big: simplify shlVU_g and shrVU_gNeven Sajko2019-04-041-12/+6
* math/big: temporarily disable buggy shlVU assembly for arm64Robert Griesemer2019-03-271-0/+4
* math/big: implement Rat.SetUint64Brian Kessler2019-03-272-0/+58
* math: use Sincos instead of Sin and Cos in Jn and YnNeven Sajko2019-03-251-10/+10
* math/big: accept non-decimal floats with Rat.SetStringRobert Griesemer2019-03-254-38/+133
* math/rand: add example for Intn funcVladimir Kovpak2019-03-251-0/+15
* cmd/compile: follow up intrinsifying math/bits.Add64 for arm64erifan012019-03-221-2/+2
* cmd/compile: intrinsify math/bits.Add64 for arm64erifan012019-03-201-0/+25
* math: fix math.Remainder(-x,x) (for Inf > x > 0)David Chase2019-03-152-0/+18
* math/big: add support for underscores '_' in numbersRobert Griesemer2019-03-128-240/+458
* math/big: implement Int.TrailingZeroBitsBrian Kessler2019-03-122-0/+31
* math/big: add fast path for amd64 addVW for large zJosh Bleecher Snyder2019-03-091-0/+8
* math/big: add fast path for pure Go addVW for large zJosh Bleecher Snyder2019-03-092-4/+54
* math/big: remove bounds checks in pure Go implementationsJosh Bleecher Snyder2019-03-091-6/+24
* math/big: support new octal prefixes 0o and 0ORobert Griesemer2019-03-077-58/+112
* math/big: rewrite pure Go implementations to use math/bitsJosh Bleecher Snyder2019-03-042-178/+26
* math/big: optimize shlVU_g and shrVU_gJosh Bleecher Snyder2019-03-041-20/+34
* math/big: better initial guess for nat.sqrtJuraj Sukop2019-02-271-1/+1
* math/cmplx: avoid panic in Pow(x, NaN())Bryan C. Mills2019-02-272-2/+7
* math/big: handle alias of cofactor inputs in GCDBrian Kessler2019-02-272-9/+50
* math/big: add %#b and %O integer formatsRuss Cox2019-02-262-4/+14
* math/big: add %x float formatRuss Cox2019-02-262-102/+229
* math/bits: optimize Reverse32 and Reverse64Michael Munday2019-02-261-5/+2
* src, misc: apply gofmtRobert Griesemer2019-02-195-41/+41
* strconv: format hex floatsRuss Cox2019-02-121-3/+3
* math/big: permit upper-case 'P' binary exponent (not just 'p')Robert Griesemer2019-02-113-6/+8
* math/big: document that Rat.SetString accepts _decimal_ float representationsRobert Griesemer2019-01-171-2/+3
* math: fix ternary correction statement in Log1pBrian Kessler2019-01-072-2/+5