1. 28ddfb0 math/big: math.Exp should return result >= 0 for |m| > 0 by Robert Griesemer · 11 years ago
  2. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/math/big/int_test.go]
  3. 2653386 math/big: fix Int.Exp by Robert Griesemer · 11 years ago
  4. 1dc82d2 math/big: Add text marshaller interface to Int by Michael T. Jones · 11 years ago
  5. fa7791e all: fix some mistakes found by go tool vet . by Rob Pike · 12 years ago
  6. bc6bb3e math/big: fix nil bug in GobEncode by Rob Pike · 12 years ago
  7. 46811d2 src: Use bytes.Equal instead of bytes.Compare where possible. by Matthew Dempsky · 12 years ago
  8. f4fc163 math/big: add SetUint64 and Uint64 functions to *Int by Luit van Drongelen · 12 years ago
  9. 7565726 math/big: fix big.Exp and document better by Robert Griesemer · 12 years ago
  10. 10b8888 math/big: correctly test for positive inputs in Int.GCD by Robert Griesemer · 13 years ago
  11. 38735b9 math/big: Implemented binary GCD algorithm by Christopher Swenson · 13 years ago
  12. 13a59b8 math/big: implement JSON un/marshaling support for Ints by Robert Griesemer · 13 years ago
  13. b80c7e5 math/big: API, documentation cleanup by Robert Griesemer · 13 years ago
  14. fc78c5a math/big: Rand shouldn't hang if argument is also receiver. by Robert Griesemer · 13 years ago
  15. ca6de00 math/big: fix destination leak into result value by Roger Peppe · 13 years ago
  16. 45e3bcb renaming_3: gofix -r go1pkgrename src/pkg/[m-z]* by Rob Pike · 13 years ago
  17. 5cb4a15 html,log,math: renamings by Rob Pike · 13 years ago[Renamed from src/pkg/big/int_test.go]
  18. 92926f5 pkg: minor cleanup by Russ Cox · 13 years ago
  19. 4854bd9 big: implemented Rat.Inv by Robert Griesemer · 13 years ago
  20. 8ddd661 build: clear execute bit from Go files by Mike Rosset · 14 years ago
  21. de20cec big: fix nat.scan bug by Evan Shaw · 14 years ago
  22. 12c7361 big: refine printf formatting and optimize string conversion by Michael T. Jones · 14 years ago
  23. 90564a9 go/printer: changed max. number of newlines from 3 to 2 by Robert Griesemer · 14 years ago
  24. d94e350 fmt: Added SkipSpace() function to fmt's ScanState interface. by Michael T. Jones · 14 years ago
  25. 21032eb big: gobs for big rats by Robert Griesemer · 14 years ago
  26. 3b98057 big: make Int and Rat implement fmt.Scanner by Evan Shaw · 14 years ago
  27. 82ddf97 big: support %v and # modifier, better handling of unknown formats by Robert Griesemer · 14 years ago
  28. 83fd82b big: add Int methods to act on numbered bits. by Roger Peppe · 14 years ago
  29. 7f9acb5 testing: shorten some more tests by Rob Pike · 14 years ago
  30. 758d055 big: implemented custom Gob(En/De)coder for Int type by Robert Griesemer · 14 years ago
  31. 1ce6245 throughout: fix broken calls to Printf etc. by Rob Pike · 14 years ago
  32. e351533 big: delete unnecessary type decls by Robert Griesemer · 14 years ago
  33. 3478891 gofmt -s -w src misc by Robert Griesemer · 14 years ago
  34. 1959c3a tests: fix prints by Rob Pike · 15 years ago
  35. 28a0971 big: Several fixes to bitwise functions by Evan Shaw · 15 years ago
  36. 97bcf04 big: added a few missing functions: by Robert Griesemer · 15 years ago
  37. 2e00bf9 big: Improvements to Rat.SetString by Evan Shaw · 15 years ago
  38. f199f29 big: add ModInverse. by Adam Langley · 15 years ago
  39. eadebba big: prevent errors in Exp in the face of aliasing by Adam Langley · 15 years ago
  40. dbb6232 big: implemented format support for fmt library, MulRange by Robert Griesemer · 15 years ago
  41. b9caa4a big: completed set of Int division routines & cleanups by Robert Griesemer · 15 years ago
  42. 4d1b157 big: Add bitwise methods for Int by Evan Shaw · 15 years ago
  43. 58e7799 big: use fast shift routines by Robert Griesemer · 15 years ago
  44. b218370 big: implemented Karatsuba multiplication by Robert Griesemer · 15 years ago
  45. 841a32d big: Create type nat by Evan Shaw · 15 years ago
  46. 455e799 big: Add some tests by Evan Shaw · 15 years ago
  47. 76cbbc8 big: Add Lsh and Value; convert pidigits to use big by Evan Shaw · 15 years ago
  48. 308064f big: fix mistakes with probablyPrime by Adam Langley · 15 years ago
  49. f44fa9b gofmt: experiment: align values in map composites where possible by Robert Griesemer · 15 years ago
  50. cfbee34 big: fix ProbablyPrime bug, comments by Russ Cox · 15 years ago
  51. 5a1d332 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
  52. 295ceb4 remove uses of string concatenation from src and misc directory by Robert Griesemer · 15 years ago
  53. 1941855 Reland a112249da741, this time with missing file. by Adam Langley · 15 years ago
  54. ed86d0e roll back 3985: build is broken by Russ Cox · 15 years ago
  55. af1fa43 big: by Adam Langley · 15 years ago
  56. 1698934 - replaced gofmt expression formatting algorithm with by Robert Griesemer · 15 years ago
  57. 40621d5 remove semis after statements in one-statement statement lists by Robert Griesemer · 15 years ago
  58. 368f8cb - fine-tuning of one-line func heuristic (nodes.go) by Robert Griesemer · 15 years ago
  59. db4e48e big: fix carry error, add test case. crypto/x509: reenable tests. by Adam Langley · 15 years ago
  60. 56eca9d minor fixups by gofmt by Robert Griesemer · 15 years ago
  61. 17021f4 Fix add-back division test so that it triggers the add-back case on by Adam Langley · 15 years ago
  62. 48b3156 gofmt'ed big by Robert Griesemer · 15 years ago
  63. 65063bc big: add Div, Mod, Exp, GcdExt and several other fixes. by Adam Langley · 15 years ago
  64. 650bff6 another round of gofmt applications by Russ Cox · 15 years ago
  65. 88742ef - implemented Multiplication by Robert Griesemer · 16 years ago
  66. 350a8e1 - rename files to match the data types they implement, adusted Makefile by Robert Griesemer · 16 years ago[Renamed from src/pkg/big/bigZ_test.go]
  67. e587422 snapshot: by Robert Griesemer · 16 years ago
  68. db3bf9c First cut at a more realistic multi-precision package: by Robert Griesemer · 16 years ago