HomeSort by relevance Sort by last modified time
    Searched defs:ALLOC (Results 1 - 8 of 8) sorted by null

  /external/speex/libspeex/
stack_alloc.h 78 * @def ALLOC(var, size, type)
105 #define ALLOC(var, size, type) type var[size]
108 #define ALLOC(var, size, type) var = alloca(sizeof(type)*(size))
111 #define ALLOC(var, size, type) var = PUSH(stack, size, type)
  /external/harfbuzz/src/
harfbuzz-impl.h 85 #define ALLOC(_ptr,_size) \
101 ALLOC(_ptr,(_count)*sizeof(_type))
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-impl.h 89 #define ALLOC(_ptr,_size) \
105 ALLOC(_ptr,(_count)*sizeof(_type))
  /external/dropbear/libtommath/mtest/
mpi.h 58 #define ALLOC(MP) ((MP)->alloc)
76 mp_size alloc; /* how many digits allocated */ member in struct:__anon7197
  /external/qemu/distrib/zlib-1.2.3/
gzio.c 43 #define ALLOC(size) malloc(size)
108 s = (gz_stream *)ALLOC(sizeof(gz_stream));
127 s->path = (char*)ALLOC(strlen(path)+1);
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
165 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
790 s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); /* for seeking */
834 s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
1006 s->msg = (char*)ALLOC(strlen(s->path) + strlen(m) + 3);
  /external/zlib/src/contrib/minizip/
unzip.c 111 #ifndef ALLOC
112 # define ALLOC(size) (malloc(size))
430 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
498 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
755 s=(unz64_s*)ALLOC(sizeof(unz64_s));
    [all...]
zip.c 61 #ifndef ALLOC
62 # define ALLOC(size) (malloc(size))
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));
    [all...]
  /external/mksh/src/
sh.h 546 strdup_dst = alloc(strdup_len, (ap)); \
557 strdup_dst = alloc(strndup_len + 1, (ap)); \
1052 #define SHF_ALLOCS 0x0200 /* shf and shf->buf were alloc()ed */
1053 #define SHF_ALLOCB 0x0400 /* shf->buf was alloc()ed */
1123 #define ALLOC BIT(0) /* val.s has been allocated */
1667 #define alloc macro
    [all...]

Completed in 283 milliseconds