zig/lib/std/heap
Motiejus Jakštys d41111d7ef mem: rename align*Generic to mem.align*
Anecdote 1: The generic version is way more popular than the non-generic
one in Zig codebase:

     git grep -w alignForward | wc -l
    56
     git grep -w alignForwardGeneric | wc -l
    149

     git grep -w alignBackward | wc -l
    6
     git grep -w alignBackwardGeneric | wc -l
    15

Anecdote 2: In my project (turbonss) that does much arithmetic and
alignment I exclusively use the Generic functions.

Anecdote 3: we used only the Generic versions in the Macho Man's linker
workshop.
2023-06-17 12:49:13 -07:00
..
arena_allocator.zig mem: rename align*Generic to mem.align* 2023-06-17 12:49:13 -07:00
general_purpose_allocator.zig mem: rename align*Generic to mem.align* 2023-06-17 12:49:13 -07:00
log_to_writer_allocator.zig std.mem.Allocator: allow shrink to fail 2022-11-29 23:30:38 -07:00
logging_allocator.zig std.mem.Allocator: allow shrink to fail 2022-11-29 23:30:38 -07:00
memory_pool.zig migration: std.math.{min, min3, max, max3} -> @min & @max 2023-06-16 13:44:09 -07:00
PageAllocator.zig mem: rename align*Generic to mem.align* 2023-06-17 12:49:13 -07:00
ThreadSafeAllocator.zig add std.heap.ThreadSafeAllocator 2023-03-15 10:48:12 -07:00
WasmAllocator.zig update codebase to use @memset and @memcpy 2023-04-28 13:24:43 -07:00
WasmPageAllocator.zig mem: rename align*Generic to mem.align* 2023-06-17 12:49:13 -07:00