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

  /external/chromium_org/third_party/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/linux-tools-perf/perf-3.12.0/arch/sparc/lib/
memset.S 13 #define ALLOC #alloc
17 .section .fixup,ALLOC,EXECINSTR; \
21 .section __ex_table,ALLOC; \
28 .section __ex_table,ALLOC; \
171 .section .fixup,#alloc,#execinstr
  /external/chromium_org/third_party/opus/src/celt/
stack_alloc.h 82 * @def ALLOC(var, size, type)
94 #define ALLOC(var, size, type) type var[size]
106 # define ALLOC(var, size, type) var = ((type*)_alloca(sizeof(type)*(size)))
108 # define ALLOC(var, size, type) var = ((type*)alloca(sizeof(type)*(size)))
150 #define ALLOC(var, size, type) var = PUSH(global_stack, size, type)
  /external/libopus/celt/
stack_alloc.h 82 * @def ALLOC(var, size, type)
94 #define ALLOC(var, size, type) type var[size]
106 # define ALLOC(var, size, type) var = ((type*)_alloca(sizeof(type)*(size)))
108 # define ALLOC(var, size, type) var = ((type*)alloca(sizeof(type)*(size)))
150 #define ALLOC(var, size, type) var = PUSH(global_stack, size, type)
  /art/test/004-ThreadStress/src/
Main.java 34 ALLOC(60),
243 case ALLOC: {
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 165 static const int FLAGS_lgmaxsize = 16; // lg() of the max size object to alloc
303 void* alloc(size_t size) { function in class:testing::AllocatorState
348 enum Type { ALLOC, FREE, UPDATE, PASS };
394 rnd_.AddType(ALLOC, FLAGS_allocweight, "allocate");
403 case ALLOC: AllocateObject(); break;
422 object.ptr = static_cast<char*>(rnd_.alloc(object.size));
550 void* p = rnd->alloc(s);
565 p = rnd->alloc(kMaxSignedSize + i);
567 p = rnd->alloc(kMaxSignedSize - i);
597 #ifndef DEBUGALLOCATION // debug alloc doesn't try to minimize realloc
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 165 static const int FLAGS_lgmaxsize = 16; // lg() of the max size object to alloc
303 void* alloc(size_t size) { function in class:testing::AllocatorState
348 enum Type { ALLOC, FREE, UPDATE, PASS };
394 rnd_.AddType(ALLOC, FLAGS_allocweight, "allocate");
403 case ALLOC: AllocateObject(); break;
422 object.ptr = static_cast<char*>(rnd_.alloc(object.size));
550 void* p = rnd->alloc(s);
565 p = rnd->alloc(kMaxSignedSize + i);
567 p = rnd->alloc(kMaxSignedSize - i);
597 #ifndef DEBUGALLOCATION // debug alloc doesn't try to minimize realloc
    [all...]
  /external/chromium_org/third_party/zlib/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 569 strdup_dst = alloc(strdup_len, (ap)); \
580 strdup_dst = alloc(strndup_len + 1, (ap)); \
1068 #define SHF_ALLOCS 0x0200 /* shf and shf->buf were alloc()ed */
1069 #define SHF_ALLOCB 0x0400 /* shf->buf was alloc()ed */
1621 #define alloc macro
    [all...]

Completed in 313 milliseconds