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
/
mem
Commit message (
Expand
)
Author
Age
Files
Lines
...
|
*
|
[mem]: Document mutex, rollback stack and tracking allocators
flysand7
2024-09-14
4
-113
/
+197
|
*
|
[mem]: Adjust the docs for calc_padding_with_header
flysand7
2024-09-14
2
-6
/
+21
|
*
|
[mem]: Adjust the docs on the buddy allocator
flysand7
2024-09-14
2
-13
/
+197
|
*
|
[mem]: Fix handling of default resize to check alignment
flysand7
2024-09-11
2
-1
/
+12
|
*
|
[mem]: Adjust docs for alloc
flysand7
2024-09-10
1
-16
/
+150
|
*
|
[mem]: Don't use named params for dynamic pool in tests
flysand7
2024-09-08
1
-8
/
+8
|
*
|
[mem]: Start documenting allocators.odin
flysand7
2024-09-08
1
-73
/
+594
|
*
|
[mem]: Put panic allocator after nil allocator, adjust @require_results
flysand7
2024-09-08
1
-58
/
+57
|
*
|
[mem]: Document raw.odin
flysand7
2024-09-08
1
-14
/
+60
|
*
|
[mem]: Remove old comments
flysand7
2024-09-08
1
-2
/
+0
|
*
|
[mem]: Panic when allocator is not initialized
flysand7
2024-09-08
1
-22
/
+45
|
*
|
[mem]: Add non_zeroed versions of resize
flysand7
2024-09-08
1
-6
/
+94
|
*
|
[mem]: Document alloc.odin
flysand7
2024-09-08
1
-41
/
+524
|
*
|
Fix typo
flysand7
2024-09-08
1
-1
/
+1
|
*
|
[mem]: Fix the issue with unbranched version of ptr align
flysand7
2024-09-07
1
-1
/
+1
|
*
|
[mem]: Document mem.odin
flysand7
2024-09-07
1
-44
/
+404
|
*
|
[mem]: Update package documentation
flysand7
2024-09-07
1
-4
/
+14
|
*
|
[mem]: Make resize_bytes take a slice for the old memory
flysand7
2024-09-07
1
-45
/
+45
|
*
|
[mem]: Rename alloc to alloc_bytes and add alloc
flysand7
2024-09-07
1
-47
/
+248
|
*
|
[mem]: Document the package
flysand7
2024-09-07
2
-23
/
+119
|
*
|
[mem]: Add free_all for buddy allocator
flysand7
2024-09-07
1
-9
/
+9
|
*
|
[mem]: Split alloc and alloc_non_zeroed for buddy allocator
flysand7
2024-09-07
1
-38
/
+21
|
*
|
[mem]: Add @require_results to all functions returning values
flysand7
2024-09-07
1
-7
/
+25
|
*
|
[mem]: Add resize_non_zeroed variant to dynamic arena, and rename pool to arena
flysand7
2024-09-07
1
-50
/
+76
|
*
|
[mem]: Add alloc_non_zeroed variant to dynamic pool
flysand7
2024-09-07
1
-123
/
+122
|
*
|
[mem]: Rename dynamic pool to dynamic arena
flysand7
2024-09-07
1
-26
/
+37
|
*
|
[mem]: Fix vet errors
flysand7
2024-09-07
1
-8
/
+9
|
*
|
[mem]: API for using small stack allocator directly
flysand7
2024-09-07
1
-153
/
+203
|
*
|
[mem]: Remove the extra word 'allocator' in procedures
flysand7
2024-09-07
1
-46
/
+49
|
*
|
[mem]: API for using stack allocator directly
flysand7
2024-09-07
1
-114
/
+169
|
*
|
[mem]: Initialize scratch allocator during calls to free and resize
flysand7
2024-09-07
1
-8
/
+10
|
*
|
[mem]: API for using scratch allocator directly
flysand7
2024-09-07
1
-120
/
+165
|
*
|
[mem]: API for using arena directly
flysand7
2024-09-07
1
-33
/
+38
|
*
|
[mem]: Code formatting
flysand7
2024-09-07
7
-188
/
+388
|
|
/
*
/
Moved all packages in core, base, vendor, tests and examples to use new #+ fi...
Karl Zylinski
2024-09-14
7
-16
/
+16
|
/
*
mem/virtual: make sure the given size is used for subsequent blocks
Laytan Laats
2024-08-29
1
-0
/
+4
*
mem/virtual: use `sysconf` for retrieving page size and actually use these in...
Laytan Laats
2024-08-29
2
-2
/
+9
*
Fix #4151
Feoramund
2024-08-26
1
-2
/
+2
*
Merge pull request #4012 from laytan/posix
gingerBill
2024-08-14
3
-165
/
+72
|
\
|
*
mem/virtual: support the BSDs
Laytan Laats
2024-08-14
2
-6
/
+14
|
*
posix: add package
Laytan Laats
2024-08-14
1
-127
/
+26
*
|
Merge pull request #3281 from erjohnson/patch-1
Laytan
2024-08-14
1
-20
/
+19
|
\
\
|
|
/
|
/
|
|
*
fix whitespace
Laytan Laats
2024-08-14
1
-5
/
+5
|
*
Update mem doc example formatting
Eric Johnson
2024-03-15
1
-24
/
+23
*
|
Replace `err != 0` with `err != nil` where possible
gingerBill
2024-08-04
1
-2
/
+2
*
|
Merge pull request #3903 from laytan/allow-mem-virtual-import-on-more-targets
Jeroen van Rijn
2024-07-11
1
-1
/
+3
|
\
\
|
*
|
allow `core:mem/virtual` import on more targets by expanding the `other` impl...
Laytan Laats
2024-07-11
1
-1
/
+3
*
|
|
fix `@(optimization_mode)` usage in builtin collections
Laytan Laats
2024-07-08
1
-3
/
+3
|
/
/
*
|
fix #3692 memory alignment bug in core:mem.dynamic_pool_alloc_bytes
DerTee
2024-07-03
1
-3
/
+1
*
|
Fix loads of indentation issues with mixing spaces and tabs
gingerBill
2024-06-29
1
-1
/
+1
[prev]
[next]