Home | History | Annotate | Download | only in dmg_fp

Lines Matching refs:malloc

103  * #define MALLOC your_malloc, where your_malloc(n) acts like malloc(n)
105 * appropriate. If MALLOC is undefined, malloc will be invoked
108 * recycle memory acquired from MALLOC, #define FREE to be the
116 * suffices to get rid of MALLOC calls except for unusual cases,
214 #ifdef MALLOC
216 extern char *MALLOC();
218 extern void *MALLOC(size_t);
221 #define MALLOC malloc
556 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(ULong));
565 rv = (Bigint*)MALLOC(len*sizeof(double));
1772 MALLOC(strlen((CONST char*)s0) + 1))) {