Searched defs:ALLOC (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/speex/libspeex/
H A Dstack_alloc.h78 * @def ALLOC(var, size, type)
105 #define ALLOC(var, size, type) type var[size] macro
108 #define ALLOC(var, size, type) var = alloca(sizeof(type)*(size)) macro
111 #define ALLOC(var, size, type) var = PUSH(stack, size, type) macro
/external/speex/libspeex/
H A Dstack_alloc.h78 * @def ALLOC(var, size, type)
105 #define ALLOC(var, size, type) type var[size] macro
108 #define ALLOC(var, size, type) var = alloca(sizeof(type)*(size)) macro
111 #define ALLOC(var, size, type) var = PUSH(stack, size, type) macro
/external/linux-tools-perf/perf-3.12.0/arch/sparc/lib/
H A Dmemset.S13 #define ALLOC #alloc define
17 .section .fixup,ALLOC,EXECINSTR; \
21 .section __ex_table,ALLOC; \
28 .section __ex_table,ALLOC; \
/external/chromium_org/third_party/opus/src/celt/
H A Dstack_alloc.h82 * @def ALLOC(var, size, type)
94 #define ALLOC(var, size, type) type var[size] macro
106 # define ALLOC(var, size, type) var = ((type*)_alloca(sizeof(type)*(size))) macro
108 # define ALLOC(var, size, type) var = ((type*)alloca(sizeof(type)*(size))) macro
150 #define ALLOC(var, size, type) var = PUSH(global_stack, size, type) macro
/external/libopus/celt/
H A Dstack_alloc.h82 * @def ALLOC(var, size, type)
94 #define ALLOC(var, size, type) type var[size] macro
106 # define ALLOC(var, size, type) var = ((type*)_alloca(sizeof(type)*(size))) macro
108 # define ALLOC(var, size, type) var = ((type*)alloca(sizeof(type)*(size))) macro
150 #define ALLOC(var, size, type) var = PUSH(global_stack, size, type) macro
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_unittest.cc348 enum Type { ALLOC, FREE, UPDATE, PASS }; enumerator in enum:testing::TesterThread::Type
394 rnd_.AddType(ALLOC, FLAGS_allocweight, "allocate");
403 case ALLOC: AllocateObject(); break;
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_unittest.cc348 enum Type { ALLOC, FREE, UPDATE, PASS }; enumerator in enum:testing::TesterThread::Type
394 rnd_.AddType(ALLOC, FLAGS_allocweight, "allocate");
403 case ALLOC: AllocateObject(); break;
/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dunzip.c111 #ifndef ALLOC
112 # define ALLOC(size) (malloc(size)) macro
430 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
498 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
755 s=(unz64_s*)ALLOC(sizeof(unz64_s));
1500 pfile_in_zip_read_info = (file_in_zip64_read_info_s*)ALLOC(sizeof(file_in_zip64_read_info_s));
1504 pfile_in_zip_read_info->read_buffer=(char*)ALLOC(UNZ_BUFSIZE);
H A Dzip.c61 #ifndef ALLOC
62 # define ALLOC(size) (malloc(size)) macro
193 ALLOC(sizeof(linkedlist_datablock_internal));
497 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
560 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
801 pziinit->globalcomment = (char*)ALLOC(size_comment+1);
815 void* buf_read = (void*)ALLOC(buf_size);
883 zi = (zip64_internal*)ALLOC(sizeof(zip64_internal));
1135 zi->ci.central_header = (char*)ALLOC((uInt)zi->ci.size_centralheader + zi->ci.size_centralExtraFree);
1962 pNewHeader = (char*)ALLOC(*dataLe
[all...]
/external/qemu/
H A Dtranslate-all.c386 # define ALLOC(P, SIZE) \ macro
392 # define ALLOC(P, SIZE) \ macro
407 ALLOC(p, sizeof(void *) * L2_SIZE);
419 ALLOC(pd, sizeof(PageDesc) * L2_SIZE);
423 #undef ALLOC macro
/external/zlib/src/contrib/minizip/
H A Dunzip.c111 #ifndef ALLOC
112 # define ALLOC(size) (malloc(size)) macro
430 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
498 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
755 s=(unz64_s*)ALLOC(sizeof(unz64_s));
1500 pfile_in_zip_read_info = (file_in_zip64_read_info_s*)ALLOC(sizeof(file_in_zip64_read_info_s));
1504 pfile_in_zip_read_info->read_buffer=(char*)ALLOC(UNZ_BUFSIZE);
H A Dzip.c61 #ifndef ALLOC
62 # define ALLOC(size) (malloc(size)) macro
193 ALLOC(sizeof(linkedlist_datablock_internal));
497 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
560 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
801 pziinit->globalcomment = (char*)ALLOC(size_comment+1);
815 void* buf_read = (void*)ALLOC(buf_size);
883 zi = (zip64_internal*)ALLOC(sizeof(zip64_internal));
1136 zi->ci.central_header = (char*)ALLOC((uInt)zi->ci.size_centralheader + zi->ci.size_centralExtraFree);
1965 pNewHeader = (char*)ALLOC(*dataLe
[all...]
/external/mksh/src/
H A Dsh.h1139 #define ALLOC BIT(0) /* val.s has been allocated */ macro

Completed in 6680 milliseconds