HomeSort by relevance Sort by last modified time
    Searched refs:MALLOC (Results 26 - 47 of 47) sorted by null

12

  /external/srec/portable/src/
pstream.c 114 fb = (FileBufferFrame *)MALLOC(sizeof(FileBufferFrame), "FileBufferFrame");
128 if ((fb->buffer = (unsigned char *)MALLOC(size, "FileBufferFrame Buffer")) == NULL)
275 PortFile = (PORT_FILE)MALLOC(sizeof(PORT_FILE_HANDLE), "PortFile");
PFileSystem.c 89 value = MALLOC(sizeof(LCHAR) * (ending - beginning + 1 + 1), MTAG);
116 *tokenArray = MALLOC(*count * sizeof(LCHAR*), MTAG);
ArrayListImpl.c 54 impl->contents = MALLOC(minCapacity * sizeof(void*), MTAG);
PANSIFileImpl.c 223 temp = MALLOC(*count * size, MTAG);
  /external/srec/shared/src/
Int8ArrayListImpl.c 48 impl->contents = MALLOC((INITIAL_SIZE + 1) * sizeof(asr_int8_t), MTAG);
HashMapImpl.c 90 LCHAR *clone = (LCHAR *) MALLOC(sizeof(LCHAR) * (LSTRLEN(key) + 1), MTAG);
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/test/
JPEGTestEnc.c     [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
compile.c 1052 vector = MALLOC(1, struct vector);
1318 size_t *src_lens = MALLOC(len, size_t);
    [all...]
execute.c 89 char *text; /* Pointer to line allocated by malloc. */
396 buf->text = MALLOC(initial_size, char);
451 /* Use FREE()+MALLOC() instead of REALLOC() to
454 to->text = MALLOC(to->alloc, char);
594 struct append_queue *n = MALLOC(1, struct append_queue);
    [all...]
  /external/expat/lib/
xmlparse.c 551 #define MALLOC(s) (parser->m_mem.malloc_fcn((s)))
719 parser = (XML_Parser)malloc(sizeof(struct XML_ParserStruct));
722 mtemp->malloc_fcn = malloc;
735 atts = (ATTRIBUTE *)MALLOC(attsSize * sizeof(ATTRIBUTE));
740 dataBuf = (XML_Char *)MALLOC(INIT_DATA_BUF_SIZE * sizeof(XML_Char));
    [all...]
  /external/mesa3d/src/mesa/main/
imports.h 31 * like malloc(), free(), printf(), getenv(), etc.
53 #define MALLOC(BYTES) malloc(BYTES)
57 #define MALLOC_STRUCT(T) (struct T *) malloc(sizeof(struct T))
  /external/valgrind/tsan/
ts_pin.cc 125 // We instrument the entry of the interesting function (e.g. malloc)
    [all...]
ts_valgrind.cc 49 //---------------------- C++ malloc support -------------- {{{1
51 return VG_(malloc)((HChar*)g_malloc_stack.Top(), size);
54 return VG_(malloc)((HChar*)g_malloc_stack.Top(), size);
63 extern "C" void *malloc(size_t size) { function
64 return VG_(malloc)((HChar*)g_malloc_stack.Top(), size);
604 Put(MALLOC, ts_tid, pc, /*ptr=*/args[1], /*size=*/args[2]);
623 // Printf("Malloc: %p %ld\n", args[1], args[2]);
624 Put(MALLOC, ts_tid, pc, /*ptr=*/args[1], /*size=*/args[2]);
    [all...]
thread_sanitizer.cc     [all...]
  /bionic/libc/stdlib/
strtod.c 88 * #define MALLOC your_malloc, where your_malloc(n) acts like malloc(n)
90 * appropriate. If MALLOC is undefined, malloc will be invoked
148 #include "malloc.h"
158 #include "malloc.h"
167 #ifdef MALLOC
169 extern char *MALLOC();
171 extern void *MALLOC(size_t);
174 #define MALLOC mallo
    [all...]
  /external/chromium/base/third_party/dmg_fp/
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 mallo
    [all...]
  /external/srec/srec/AcousticModels/src/
AcousticModelsImpl.c 501 temp = MALLOC(sizeof(LCHAR) * (LSTRLEN(value) + 1), MTAG);
  /external/srec/srec/clib/
swicms.c 329 copy_of_params = (char*)MALLOC ( length_of_params, NULL );
  /external/srec/srec/Recognizer/src/
RecognizerImpl.c     [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 97 #include <malloc.h>
    [all...]
  /hardware/broadcom/wlan/bcm4329/dhdutil/
bcmutils.c     [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c     [all...]

Completed in 449 milliseconds

12