mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 12:59:44 +00:00
f26e77ba40
* LINKER_FILES in makefile
* COLPOLY_GET_NORMAL
* math header
* libc
* M_PI for cosf and sinf files
* MAXFLOAT
* Revert "MAXFLOAT"
This reverts commit 96b75ffaa8
.
* Remove SHT_MINV
* SHRT_MAX
* Add M_PI
* Angle macros
* f suffix
* Format
30 lines
894 B
C
30 lines
894 B
C
#ifndef THA_H
|
|
#define THA_H
|
|
|
|
#include "ultra64.h"
|
|
#include "stdint.h"
|
|
#include "stddef.h"
|
|
|
|
typedef struct TwoHeadArena {
|
|
/* 0x0 */ size_t size;
|
|
/* 0x4 */ void* start;
|
|
/* 0x8 */ void* head;
|
|
/* 0xC */ void* tail;
|
|
} TwoHeadArena; // size = 0x10
|
|
|
|
void* THA_GetHead(TwoHeadArena* tha);
|
|
void THA_SetHead(TwoHeadArena* tha, void* newHead);
|
|
void* THA_GetTail(TwoHeadArena* tha);
|
|
void* THA_AllocHead(TwoHeadArena* tha, size_t size);
|
|
void* THA_AllocHeadByte(TwoHeadArena* tha);
|
|
void* THA_AllocTail(TwoHeadArena* tha, size_t size);
|
|
void* THA_AllocTailAlign16(TwoHeadArena* tha, size_t size);
|
|
void* THA_AllocTailAlign(TwoHeadArena* tha, size_t size, uintptr_t mask);
|
|
ptrdiff_t THA_GetRemaining(TwoHeadArena* tha);
|
|
u32 THA_IsCrash(TwoHeadArena* tha);
|
|
void THA_Reset(TwoHeadArena* tha);
|
|
void THA_Init(TwoHeadArena* tha, void* start, size_t size);
|
|
void THA_Destroy(TwoHeadArena* tha);
|
|
|
|
#endif
|