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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add math.remap_clamped.
Jeroen van Rijn
2024-09-01
1
-1
/
+6
*
Make math.remap clamp the result in range [new_min, new_max].
Karl Zylinski
2024-09-01
1
-1
/
+2
*
Fix possible leaks in `os2.user_*` calls
gingerBill
2024-08-31
1
-6
/
+10
*
c/libc: fix time link name
Laytan Laats
2024-08-31
1
-1
/
+1
*
encoding/csv: fix examples
Laytan Laats
2024-08-30
1
-4
/
+6
*
core/odin: support `#type_assert` and `#no_type_assert`
Laytan Laats
2024-08-30
2
-0
/
+11
*
Add a few more reflect.bit_field_* helpers.
Jeroen van Rijn
2024-08-30
1
-23
/
+68
*
Add reflect.bit_fields_zipped
Jeroen van Rijn
2024-08-30
1
-0
/
+23
*
Merge pull request #4009 from thetarnav/file-tag-parser
gingerBill
2024-08-30
1
-0
/
+239
|
\
|
*
Add and test match_build_tags
Damian Tarnawski
2024-08-29
1
-0
/
+32
|
*
Parse build_project_name as `[][]string`
Damian Tarnawski
2024-08-29
1
-18
/
+32
|
*
Move some types to runtime, use reflection instead of lut
Damian Tarnawski
2024-08-29
1
-71
/
+19
|
*
Add missing require_results attr
Damian Tarnawski
2024-08-29
1
-0
/
+1
|
*
Remove useless code
Damian Tarnawski
2024-08-29
1
-12
/
+0
|
*
Add a file tag parser to core:odin/parser
Damian Tarnawski
2024-08-29
1
-0
/
+256
*
|
Merge pull request #4112 from Feoramund/fix-test-io-issues
gingerBill
2024-08-30
21
-186
/
+500
|
\
\
|
|
/
|
/
|
|
*
Fix EOF detection is os2 window read
Laytan Laats
2024-08-28
1
-0
/
+4
|
*
Return `0, nil` in all `io` cases where an empty slice is provided
Feoramund
2024-08-28
6
-1
/
+44
|
*
Fix `pread` and `pwrite` on `os2` Windows
Feoramund
2024-08-28
1
-2
/
+2
|
*
Report invalid whence & offset on `os2` Windows
Feoramund
2024-08-28
2
-0
/
+5
|
*
Fix Windows infinite recursion with `os2._flush`
Feoramund
2024-08-28
1
-2
/
+2
|
*
Add documentation to `os2.close`
Feoramund
2024-08-28
1
-0
/
+6
|
*
Check `int(abs)` instead to avoid overflows
Feoramund
2024-08-28
1
-2
/
+3
|
*
Report `Invalid_Whence` on some `os` platforms
Feoramund
2024-08-28
7
-14
/
+73
|
*
Add missing `flush` functionality to `os` platforms
Feoramund
2024-08-28
6
-7
/
+28
|
*
Report `Invalid_Whence` in `os2` Linux seek
Feoramund
2024-08-28
1
-2
/
+14
|
*
Report `Invalid_Whence` in `os2` POSIX seek
Feoramund
2024-08-28
1
-1
/
+14
|
*
Copy missing errors in `os2._get_platform_error` from `posix` to `linux`
Feoramund
2024-08-28
1
-0
/
+8
|
*
Zero `n` on error in `_file_stream_proc`
Feoramund
2024-08-28
1
-0
/
+3
|
*
Fix indentation
Feoramund
2024-08-28
1
-46
/
+46
|
*
Fix OpenBSD implementations of `read_at` and `write_at`
Feoramund
2024-08-28
1
-12
/
+22
|
*
Fix indentation
Feoramund
2024-08-28
1
-45
/
+45
|
*
Fix Haiku implementations of `read_at` and `write_at`
Feoramund
2024-08-28
1
-12
/
+22
|
*
Fix NetBSD implementations of `read_at` and `write_at`
Feoramund
2024-08-28
1
-12
/
+22
|
*
Make Windows `pread` and `pwrite` conform to POSIX
Feoramund
2024-08-28
1
-20
/
+8
|
*
Fix FreeBSD implementations of `read_at` and `write_at`
Feoramund
2024-08-28
2
-12
/
+93
|
*
Fix broken cases of `Seek` usage in `_file_stream_proc`
Feoramund
2024-08-28
4
-0
/
+15
|
*
Measure `bytes.Buffer` size by `length` instead of `capacity`
Feoramund
2024-08-28
1
-1
/
+1
|
*
Add `Seek` behavior to `bytes.Buffer`
Feoramund
2024-08-28
1
-1
/
+24
|
*
Don't invalidate `prev_rune` if `Reader` seek failed
Feoramund
2024-08-28
1
-1
/
+1
|
*
Return `.EOF` in `bytes.buffer_read_at` instead
Feoramund
2024-08-28
1
-1
/
+1
|
*
Make `bytes.reader_init` return an `io.Stream`
Feoramund
2024-08-28
1
-1
/
+2
|
*
Make `io.Section_Reader` set `base` too
Feoramund
2024-08-28
1
-2
/
+3
|
*
Add missing `io.Stream_Mode` responses
Feoramund
2024-08-28
4
-4
/
+4
*
|
mem/virtual: make sure the given size is used for subsequent blocks
Laytan Laats
2024-08-29
1
-0
/
+4
*
|
Merge pull request #4163 from laytan/sysconf-pagesize
Laytan
2024-08-29
2
-2
/
+9
|
\
\
|
|
/
|
/
|
|
*
mem/virtual: use `sysconf` for retrieving page size and actually use these in...
Laytan Laats
2024-08-29
2
-2
/
+9
*
|
os2: disable custom heap allocator
Laytan
2024-08-28
1
-0
/
+13
*
|
Merge pull request #4158 from sqrt-negativeone/master
Jeroen van Rijn
2024-08-28
2
-0
/
+38
|
\
\
|
*
|
Add Win32 procs needed to handle clipboard
Fakhri Mouad
2024-08-28
2
-0
/
+38
|
|
/
[next]