index
:
odin/Odin.git
bill/all_or_none
bill/any-type-switch-if-else
bill/change-license
bill/compiler-optimizations-2025-09
bill/conditional-zero
bill/const-union
bill/dir-organization
bill/disallow-128-bit
bill/fix-current-os-package
bill/fix-data-races-2026-02
bill/force-type-assert
bill/global-variable-distribution
bill/init-fini-changes
bill/integer-concatenation
bill/io-error-changes
bill/must-tail
bill/new-slice-sort
bill/range-init
bill/remove-test-suffix
bill/shared-partial-return-memory
bill/subtype-type-info
bill/typeid-sip-hash
bill/utf16-strings
core-flags
core_os2_revamp
custom-math-sin
fix-4225
llvm-12-support
master
middle-end
mimalloc
mv/libc-errors
new_os
orca-dev
text-template
update-tilde
windows-llvm-11.1.0
windows-llvm-12.0.1
windows-llvm-13.0.0
Odin Programming Language
Odin Lang
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
core
/
math
/
big
/
radix.odin
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove `core:mem` import from `core:math/big`.
Jeroen van Rijn
3 days
1
-7
/
+6
*
Remove all `core:os` imports from JS targets
Jeroen van Rijn
6 days
1
-57
/
+0
*
core:os -> core:os/os for core:math/big
Jeroen van Rijn
7 days
1
-8
/
+7
*
Always use new itoa method when MATH_BIG_FORCE_32_BIT
Jeroen van Rijn
2025-11-28
1
-1
/
+1
*
Another little bit faster.
Jeroen van Rijn
2025-11-27
1
-4
/
+23
*
Switch between old and new itoa method based on optimization level + digit size
Jeroen van Rijn
2025-11-27
1
-5
/
+14
*
Speed up big.itoa
Jeroen van Rijn
2025-11-27
1
-6
/
+78
*
Use `@(rodata)` where possible
gingerBill
2025-11-27
1
-4
/
+5
*
Use `< 0` instead of `== -1` for comparisons
gingerBill
2025-11-27
1
-1
/
+1
*
Handle `Allocator_Error` correctly in `core:math/big`
gingerBill
2025-11-27
1
-1
/
+5
*
Change Odin's LICENSE to zlib from BSD 3-clause
gingerBill
2025-10-28
1
-1
/
+1
*
Package lines for `core:math` and more.
Jeroen van Rijn
2025-10-09
1
-3
/
+2
*
Turn `core:math/bìg` tests into regular `core:testing` tests.
Jeroen van Rijn
2025-06-11
1
-1
/
+1
*
Fix a range check in int_atoi in core:math/big.
Barinzaya
2025-05-24
1
-1
/
+1
*
Add missing `string_to_int` alias in `core:math/big`
Feoramund
2024-06-09
1
-0
/
+1
*
fix a couple of -vet-style failures after f54977336b27c32eab52b77d94e7b1610f4...
Laytan
2024-05-09
1
-2
/
+2
*
Replace `core:*` to `base:*` where appropriate
gingerBill
2024-01-28
1
-1
/
+1
*
Use positional and named arguments within the core library
gingerBill
2023-06-21
1
-1
/
+1
*
Simplify docs to hide the copyright
gingerBill
2022-01-17
1
-0
/
+2
*
Merge branch 'master' into optional-semicolons
gingerBill
2021-09-06
1
-22
/
+187
|
\
|
*
Add `internal_int_(pack, unpack)`.
Jeroen van Rijn
2021-09-06
1
-0
/
+111
|
*
big: Add ASCII file import/export.
Jeroen van Rijn
2021-09-05
1
-12
/
+67
|
*
big: Add `internal_int_is_prime`.
Jeroen van Rijn
2021-09-02
1
-8
/
+8
|
*
big: Add `internal_int_exponent_mod`.
Jeroen van Rijn
2021-09-01
1
-2
/
+1
*
|
Strip even more semicolons if followed by a `}` or `)` on the same line
gingerBill
2021-08-31
1
-2
/
+2
*
|
Remove unneeded semicolons from the core library
gingerBill
2021-08-31
1
-140
/
+140
|
/
*
Add tests for `internal_int_is_square'.
Jeroen van Rijn
2021-08-28
1
-1
/
+1
*
big: Update license to BSD-3.
Jeroen van Rijn
2021-08-19
1
-1
/
+1
*
Replace `err != nil` with `or_return` where appropriate
gingerBill
2021-08-15
1
-24
/
+19
*
big: Add arguments and usage to test.py.
Jeroen van Rijn
2021-08-11
1
-1
/
+1
*
big: Add `_private_int_sqr_comba`.
Jeroen van Rijn
2021-08-11
1
-0
/
+4
*
big: Finish refactor.
Jeroen van Rijn
2021-08-11
1
-29
/
+33
*
big: More refactoring.
Jeroen van Rijn
2021-08-11
1
-19
/
+14
*
big: Improved `zero_unused` helper.
Jeroen van Rijn
2021-08-11
1
-1
/
+1
*
bit: Improved bitfield extraction.
Jeroen van Rijn
2021-08-11
1
-2
/
+4
*
big: `Error.None` -> `nil`
Jeroen van Rijn
2021-08-11
1
-25
/
+25
*
big: Add `factorial`, have tests use hex strings.
Jeroen van Rijn
2021-08-11
1
-2
/
+2
*
big: fix `itoa` base PoT other than 16.
Jeroen van Rijn
2021-08-11
1
-1
/
+1
*
big: Improve `int_bitfield_extract`.
Jeroen van Rijn
2021-08-11
1
-1
/
+1
*
big: Add `sqrt`.
Jeroen van Rijn
2021-08-11
1
-1
/
+1
*
big: Add `atoi`.
Jeroen van Rijn
2021-08-11
1
-9
/
+95
*
big: Add another way to estimate radix size.
Jeroen van Rijn
2021-08-11
1
-10
/
+65
*
big: `itoa` now works for arbitrary radixes.
Jeroen van Rijn
2021-08-11
1
-40
/
+87
*
big: Add `pow`.
Jeroen van Rijn
2021-08-11
1
-2
/
+2
*
big: Finish big ZII refactor.
Jeroen van Rijn
2021-08-11
1
-44
/
+54
*
big: More ZII refactoring.
Jeroen van Rijn
2021-08-11
1
-2
/
+3
*
big: More ZII refactoring.
Jeroen van Rijn
2021-08-11
1
-2
/
+1
*
big: Continuing to refactor.
Jeroen van Rijn
2021-08-11
1
-1
/
+1
*
bigint: refactor to `big.Int` instead of `bigint.Int`.
Jeroen van Rijn
2021-08-11
1
-0
/
+282