#include <stdlib.h>#include "MALLOC.h"Include dependency graph for spmalloc.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | SPMALLOC(x) MALLOC(((size_t) x)) |
| #define | SPALLOC(type, number) ((type *)SPMALLOC((unsigned)(sizeof(type)*(number)))) |
| #define | SPREALLOC(ptr, type, number) ptr = (type *)REALLOC((char *)ptr,(unsigned)(sizeof(type)*(number))) |
| #define | SPFREE(ptr) { if ((ptr) != NULL) {FREE((void *)(ptr)); (ptr) = NULL;}} |
| #define | SPCALLOC(ptr, type, number) |
Definition at line 7 of file spmalloc.h.
Referenced by AllocateBlockOfAllocationList(), CreateInternalVectors(), InitializeElementBlocks(), spcGetElement(), spcGetFillin(), and spCreate().
Definition at line 11 of file spmalloc.h.
Referenced by EnlargeMatrix(), RecordAllocation(), and spDestroy().
Definition at line 6 of file spmalloc.h.
1.5.1