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
/
runtime
/
dynamic_map_internal.odin
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Reduce unnecessary map gets
gingerBill
2022-09-21
1
-9
/
+19
*
Simplify `__get_map_header` stuff
gingerBill
2022-09-21
1
-11
/
+21
*
Split header table data and the map pointer
gingerBill
2022-09-21
1
-84
/
+90
*
Minor correction to `__get_map_header`
gingerBill
2022-09-17
1
-1
/
+1
*
General clean up minor with rearrangements and removing unneeded procedures
gingerBill
2022-09-17
1
-31
/
+26
*
Inline many calls and delete unused procedures
gingerBill
2022-09-17
1
-32
/
+19
*
Minor refactor of the dynamic_map_internal.odin stuff
gingerBill
2022-09-17
1
-66
/
+58
*
Wrap `__dynamic_map_find` for certain cases
gingerBill
2022-09-17
1
-4
/
+9
*
Minor clean up
gingerBill
2022-09-17
1
-3
/
+2
*
Add `contextless` where possible in dynamic_map_internal.odin
gingerBill
2022-09-17
1
-8
/
+7
*
Change `__dynamic_map_get` and `__dynamic_map_set` to use separate parameters...
gingerBill
2022-09-17
1
-8
/
+13
*
Catch missing areas of `Map_Index` usage
gingerBill
2022-09-17
1
-5
/
+5
*
Change internal map indices to use a distinct `uint` rather than just `int`
gingerBill
2022-09-17
1
-24
/
+26
*
Chnage `next_pow2` to `ceil_to_pow2`
gingerBill
2022-09-17
1
-2
/
+2
*
Use pow of two capacity for hash maps to allow for `& (n-1)` instead of `% n`
gingerBill
2022-09-12
1
-6
/
+27
*
Clean-up and unification for the allocation procedures
gingerBill
2022-08-08
1
-1
/
+1
*
Improve `resize` call
gingerBill
2022-08-08
1
-5
/
+8
*
[runtime] Add builtin `shrink` for dynamic arrays and maps
Tetralux
2022-06-04
1
-0
/
+10
*
Remove unneeded call
gingerBill
2021-10-26
1
-1
/
+1
*
Remove unnecessary `assert`s
gingerBill
2021-10-26
1
-12
/
+4
*
Correct issue with the generated `map` type internals; Simplify map rehash lo...
gingerBill
2021-10-07
1
-54
/
+37
*
Add `runtime.__get_map_header_runtime`
gingerBill
2021-09-25
1
-0
/
+22
*
Make `map` internals more robust when using `mem.nil_allocator()`
gingerBill
2021-09-25
1
-2
/
+4
*
Strip even more semicolons if followed by a `}` or `)` on the same line
gingerBill
2021-08-31
1
-16
/
+16
*
Remove unneeded semicolons from the core library
gingerBill
2021-08-31
1
-152
/
+152
*
Add `map_insert` which returns the pointer to inserted value
gingerBill
2021-08-29
1
-10
/
+15
*
Enforce `core:builtin` and `core:intrinsics` for imports
gingerBill
2021-08-21
1
-1
/
+1
*
`Allocator_Error.Mode_Not_Implemented`; Minor improvement to `map` runtime pr...
gingerBill
2021-08-08
1
-1
/
+1
*
More minor stylization changes (remove unneeded parentheses)
gingerBill
2021-06-14
1
-1
/
+1
*
Improve the `Allocator` interface to support returning `Allocator_Error` to a...
gingerBill
2021-04-19
1
-2
/
+2
*
Make trailing comma usage consistent
gingerBill
2021-03-13
1
-8
/
+7
*
Remove dead code
gingerBill
2021-03-06
1
-10
/
+0
*
Minimize unneeded casts
gingerBill
2021-03-03
1
-6
/
+6
*
Replace `inline` uses in the rest of core with `#force_inline`
gingerBill
2021-02-23
1
-16
/
+16
*
Replace usage of `inline proc` with `#force_inline proc` in the core library
gingerBill
2021-02-23
1
-6
/
+6
*
Deprecate `inline for` in favour of `#unroll for`
gingerBill
2021-02-23
1
-1
/
+1
*
Revert function passes
gingerBill
2020-11-29
1
-9
/
+9
*
Make 16 simple hasher cases for small types
gingerBill
2020-11-29
1
-1
/
+15
*
Support map keys for simple compare types
gingerBill
2020-11-29
1
-1
/
+3
*
Simplify hashing approach `map`
gingerBill
2020-11-29
1
-0
/
+10
*
Add `intrinsics.type_hasher_proc`; Make `map` work with generic hasher procedure
gingerBill
2020-11-29
1
-24
/
+40
*
Minor clean up
gingerBill
2020-11-29
1
-7
/
+3
*
Add intrinsics.type_equal_proc; Make `map` use an internal equal procedure to...
gingerBill
2020-11-29
1
-10
/
+5
*
Keep -vet happy
gingerBill
2020-11-29
1
-1
/
+0
*
Simplify internals of `map[K]V`
gingerBill
2020-11-29
1
-52
/
+49
*
Keep -vet happy
gingerBill
2020-11-26
1
-1
/
+1
*
Fix typo
gingerBill
2020-11-26
1
-2
/
+2
*
Add `__dynamic_map_fix_keys`
gingerBill
2020-11-25
1
-0
/
+17
*
Clean up and fix `__dynamic_map_erase`
gingerBill
2020-11-25
1
-6
/
+9
*
Clean up `__dynamic_map_rehash` behaviour
gingerBill
2020-11-25
1
-2
/
+2
[prev]
[next]