From 91a8f73a72c237065a4d4394f7372dc508c258d2 Mon Sep 17 00:00:00 2001 From: talha Date: Wed, 13 Mar 2024 23:31:17 +0500 Subject: Refactored memory files a bit --- memory/memory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'memory/memory.h') diff --git a/memory/memory.h b/memory/memory.h index 94b5022..e402c0b 100644 --- a/memory/memory.h +++ b/memory/memory.h @@ -40,6 +40,8 @@ struct ResVoid { }; b8 is_power_of_two(uintptr_t x); +uintptr_t fast_modulo(uintptr_t p, uintptr_t a); +uintptr_t align_forward(uintptr_t ptr, size_t align); //=========================================================================================== // ---------------------------------- ARENA ------------------------------------------------- @@ -52,7 +54,6 @@ struct Arena { size_t capacity; }; -uintptr_t align_forward(uintptr_t ptr, size_t align); void arena_init(struct Arena *a, unsigned char *backing_store, size_t capacity); void* arena_alloc_aligned(struct Arena* a, size_t size, size_t align); void* arena_alloc(struct Arena* a, size_t size); -- cgit v1.2.3