HomeSort by relevance Sort by last modified time
    Searched defs:ALLOC (Results 1 - 6 of 6) 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/dropbear/libtommath/mtest/
mpi.h 58 #define ALLOC(MP) ((MP)->alloc)
76 mp_size alloc; /* how many digits allocated */ member in struct:__anon1650
  /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/
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/contrib/minizip/
unzip.c 77 #ifndef ALLOC
78 # define ALLOC(size) (malloc(size))
350 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
493 s=(unz_s*)ALLOC(sizeof(unz_s));
    [all...]
zip.c 49 #ifndef ALLOC
50 # define ALLOC(size) (malloc(size))
165 ALLOC(sizeof(linkedlist_datablock_internal));
459 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
532 zi = (zip_internal*)ALLOC(sizeof(zip_internal));
618 ziinit.globalcomment = ALLOC(size_comment+1);
633 void* buf_read = (void*)ALLOC(buf_size);
777 zi->ci.central_header = (char*)ALLOC((uInt)zi->ci.size_centralheader);
    [all...]

Completed in 716 milliseconds