Searched defs:ALLOC (Results 1 – 5 of 5) sorted by relevance
/external/speex/libspeex/ |
D | stack_alloc.h | 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/libopus/celt/ |
D | stack_alloc.h | 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/zlib/src/contrib/minizip/ |
D | unzip.c | 112 # define ALLOC(size) (malloc(size)) macro
|
D | zip.c | 62 # define ALLOC(size) (malloc(size)) macro
|
/external/mksh/src/ |
D | sh.h | 1197 #define ALLOC BIT(0) /* val.s has been allocated */ macro
|