Searched defs:MALLOC (Results 1 - 7 of 7) sorted by relevance
/external/elfcopy/ |
H A D | debug.h | 45 static inline void *MALLOC(unsigned int size) { function
|
/external/srec/portable/include/ |
H A D | pmemory.h | 64 #define MALLOC(n, tag) malloc(n) macro 69 #define NEW(type, tag) ((type*)MALLOC(sizeof(type), tag)) 101 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes, tag, L(__FILE__), __LINE__)) macro 106 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes)) macro 138 #define NEW(type, tag) ((type*) MALLOC(sizeof(type), tag))
|
/external/chromium/third_party/icu/source/tools/genpname/ |
H A D | genpname.cpp | 152 #define MALLOC(type, count) \ macro 603 valueEnumToName = MALLOC(EnumToOffset*, count); 604 valueNCEnumToName = MALLOC(NonContiguousEnumToOffset*, count); 605 valueEnumToName_size = MALLOC(int32_t, count); 606 valueEnumToName_offset = MALLOC(Offset, count); 607 valueNameToEnum = MALLOC(NameToEnum*, count); 608 valueNameToEnum_size = MALLOC(int32_t, count); 609 valueNameToEnum_offset = MALLOC(Offset, count); 640 nameGroupPool = MALLOC(Offset, nameGroupPool_count); 657 stringPool = MALLOC(cha [all...] |
/external/icu4c/tools/genpname/ |
H A D | genpname.cpp | 153 #define MALLOC(type, count) \ macro 604 valueEnumToName = MALLOC(EnumToOffset*, count); 605 valueNCEnumToName = MALLOC(NonContiguousEnumToOffset*, count); 606 valueEnumToName_size = MALLOC(int32_t, count); 607 valueEnumToName_offset = MALLOC(Offset, count); 608 valueNameToEnum = MALLOC(NameToEnum*, count); 609 valueNameToEnum_size = MALLOC(int32_t, count); 610 valueNameToEnum_offset = MALLOC(Offset, count); 641 nameGroupPool = MALLOC(Offset, nameGroupPool_count); 658 stringPool = MALLOC(cha [all...] |
/external/v8/src/third_party/dtoa/ |
H A D | dtoa.c | 97 * #define MALLOC your_malloc, where your_malloc(n) acts like malloc(n) 99 * appropriate. If MALLOC is undefined, malloc will be invoked 105 * suffices to get rid of MALLOC calls except for unusual cases, 185 #ifdef MALLOC 187 extern char *MALLOC(); 189 extern void *MALLOC(size_t); 192 #define MALLOC malloc macro 512 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(ULong)); 521 rv = (Bigint*)MALLOC(len*sizeof(double));
|
/external/chromium/base/third_party/dmg_fp/ |
H A D | dtoa.cc | 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 macro 556 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(ULong)); 565 rv = (Bigint*)MALLOC(le [all...] |
/external/expat/lib/ |
H A D | xmlparse.c | 551 #define MALLOC(s) (parser->m_mem.malloc_fcn((s))) macro 735 atts = (ATTRIBUTE *)MALLOC(attsSize * sizeof(ATTRIBUTE)); 740 dataBuf = (XML_Char *)MALLOC(INIT_DATA_BUF_SIZE * sizeof(XML_Char)); 1512 ? (char *)MALLOC(len * 2) 1645 newBuf = (char *)MALLOC(bufferSize); 1818 return MALLOC(size); 2310 tag = (TAG *)MALLOC(sizeof(TAG)); 2313 tag->buf = (char *)MALLOC(INIT_TAG_BUF_SIZE); 2918 uri = (XML_Char *)MALLOC((n + EXPAND_SPARE) * sizeof(XML_Char)); 3028 b = (BINDING *)MALLOC(sizeo [all...] |
Completed in 229 milliseconds