Functions§
- mi_free⚠
- Free previously allocated memory.
- mi_
malloc ⚠ - Allocate
size
bytes. - mi_
malloc_ ⚠aligned - Allocate
size
bytes aligned byalignment
. - mi_
realloc ⚠ - Re-allocate memory to
newsize
bytes. - mi_
realloc_ ⚠aligned - Re-allocate memory to
newsize
bytes, aligned byalignment
. - mi_
zalloc ⚠ - Allocate zero-initialized
size
bytes. - mi_
zalloc_ ⚠aligned - Allocate
size
bytes aligned byalignment
, initialized to zero.