#include <types.h>
#include <irx.h>
Go to the source code of this file.
|
#define | alloc_IMPORTS_start DECLARE_IMPORT_TABLE(alloc, 1, 1) |
|
#define | alloc_IMPORTS_end END_IMPORT_TABLE |
|
#define | I_malloc DECLARE_IMPORT(4, malloc) |
|
#define | I_realloc DECLARE_IMPORT(5, realloc) |
|
#define | I_free DECLARE_IMPORT(6, free) |
|
#define | I_calloc DECLARE_IMPORT(7, calloc) |
|
#define | I_memalign DECLARE_IMPORT(8, memalign) |
|
#define | I___mem_walk_begin DECLARE_IMPORT(9, __mem_walk_begin) |
|
#define | I___mem_walk_read DECLARE_IMPORT(10, __mem_walk_read) |
|
#define | I___mem_walk_inc DECLARE_IMPORT(11, __mem_walk_inc) |
|
#define | I___mem_walk_end DECLARE_IMPORT(12, __mem_walk_end) |
|
Basic alloc library
Definition in file alloc.h.
◆ alloc_IMPORTS_start
#define alloc_IMPORTS_start DECLARE_IMPORT_TABLE(alloc, 1, 1) |
◆ alloc_IMPORTS_end
#define alloc_IMPORTS_end END_IMPORT_TABLE |
◆ I_malloc
#define I_malloc DECLARE_IMPORT(4, malloc) |
◆ I_realloc
#define I_realloc DECLARE_IMPORT(5, realloc) |
◆ I_free
#define I_free DECLARE_IMPORT(6, free) |
◆ I_calloc
#define I_calloc DECLARE_IMPORT(7, calloc) |
◆ I_memalign
#define I_memalign DECLARE_IMPORT(8, memalign) |
◆ I___mem_walk_begin
#define I___mem_walk_begin DECLARE_IMPORT(9, __mem_walk_begin) |
◆ I___mem_walk_read
#define I___mem_walk_read DECLARE_IMPORT(10, __mem_walk_read) |
◆ I___mem_walk_inc
#define I___mem_walk_inc DECLARE_IMPORT(11, __mem_walk_inc) |
◆ I___mem_walk_end
#define I___mem_walk_end DECLARE_IMPORT(12, __mem_walk_end) |
◆ malloc()
void * malloc |
( |
size_t | size | ) |
|
|
extern |
◆ realloc()
void * realloc |
( |
void * | ptr, |
|
|
size_t | size ) |
|
extern |
◆ free()
◆ calloc()
void * calloc |
( |
size_t | n, |
|
|
size_t | size ) |
|
extern |
◆ memalign()
void * memalign |
( |
size_t | align, |
|
|
size_t | size ) |
|
extern |
◆ __mem_walk_begin()
void * __mem_walk_begin |
( |
| ) |
|
|
extern |
◆ __mem_walk_read()
void __mem_walk_read |
( |
void * | token, |
|
|
u32 * | size, |
|
|
void ** | ptr, |
|
|
int * | valid ) |
|
extern |
◆ __mem_walk_inc()
void * __mem_walk_inc |
( |
void * | token | ) |
|
|
extern |
◆ __mem_walk_end()
int __mem_walk_end |
( |
void * | token | ) |
|
|
extern |