/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/ |
libthread_db.so | |
libthread_db.so.1 | |
/system/core/fastboot/ |
bootimg.c | 60 hdr = calloc(*bootimg_size, 1);
|
/system/core/libsparse/ |
simg2simg.c | 79 out_s = calloc(sizeof(struct sparse_file *), files);
|
/system/core/toolbox/ |
ioctl.c | 85 ioctl_args = calloc(1, length);
|
/external/valgrind/main/coregrind/m_replacemalloc/ |
vg_replace_malloc.c | 53 avoid such function calls in the first place. See "#define CALLOC" 82 10070 CALLOC 144 and V. This is for calloc argument overflow checking; see comments 187 __builtin_delete, calloc, realloc, memalign, and friends. 546 /*---------------------- calloc ----------------------*/ 565 #define CALLOC(soname, fnname) \ 575 MALLOC_TRACE("calloc(%llu,%llu)", (ULong)nmemb, (ULong)size ); \ 593 CALLOC(VG_Z_LIBC_SONAME, calloc); 594 CALLOC(SO_SYN_MALLOC, calloc) [all...] |
/external/bison/darwin-lib/ |
stdlib.h | 488 # undef calloc 489 # define calloc rpl_calloc 491 _GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size)); 492 _GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size)); 494 _GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size)); 496 _GL_CXXALIASWARN (calloc); variable 498 # undef calloc macro 499 /* Assume calloc is always declared. */ 500 _GL_WARN_ON_USE (calloc, "calloc is not POSIX compliant everywhere - [all...] |
/external/bison/linux-lib/ |
stdlib.h | 488 # undef calloc 489 # define calloc rpl_calloc 491 _GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size)); 492 _GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size)); 494 _GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size)); 496 _GL_CXXALIASWARN (calloc); variable 498 # undef calloc macro 499 /* Assume calloc is always declared. */ 500 _GL_WARN_ON_USE (calloc, "calloc is not POSIX compliant everywhere - [all...] |
/dalvik/vm/ |
AtomicCache.cpp | 44 newCache = (AtomicCache*) calloc(1, sizeof(AtomicCache)); 50 newCache->entryAlloc = calloc(1,
|
/dalvik/vm/hprof/ |
Hprof.cpp | 44 hprof_context_t *ctx = (hprof_context_t *)calloc(1, sizeof(*ctx)); 70 hprof_context_t *headCtx = (hprof_context_t *)calloc(1, sizeof(*headCtx));
|
/external/chromium/third_party/libevent/test/ |
bench.c | 159 events = calloc(num_pipes, sizeof(struct event)); 160 pipes = calloc(num_pipes * 2, sizeof(int));
|
/external/chromium_org/base/process/ |
memory_linux.cc | 71 // the link order. Since ld.so needs calloc during symbol resolution, it 104 DIE_ON_OOM_2(calloc, size_t)
|
/external/chromium_org/third_party/libevent/test/ |
bench.c | 159 events = calloc(num_pipes, sizeof(struct event)); 160 pipes = calloc(num_pipes * 2, sizeof(int));
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
hash_table.c | 144 node = calloc(1, sizeof(*node)); 169 hn = calloc(1, sizeof(*hn));
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prmem.h | 52 ** NOTE: pr wraps up malloc, free, calloc, realloc so they are already 58 ** as their libc equivalent malloc, calloc, realloc, and free, and have
|
/external/e2fsprogs/e2fsck/ |
mtrace.h | 66 extern __ptr_t calloc __P ((size_t __nmemb, size_t __size)); 67 /* Free a block allocated by `malloc', `realloc' or `calloc'. */
|
/external/eigen/unsupported/Eigen/ |
AdolcForward | 35 #if defined(calloc) 36 # undef calloc
|
/external/iproute2/netem/ |
maketable.c | 34 x = calloc(limit, sizeof(double)); 99 table = calloc(DISTTABLESIZE, sizeof(int));
|
/external/libsepol/src/ |
avrule_block.c | 47 if ((block = calloc(1, sizeof(*block))) == NULL) { 57 if ((decl = calloc(1, sizeof(*decl))) == NULL) {
|
/external/libvpx/libvpx/vp8/encoder/ |
lookahead.c | 84 ctx = calloc(1, sizeof(*ctx)); 88 ctx->buf = calloc(depth, sizeof(*ctx->buf));
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_lookahead.c | 66 ctx = calloc(1, sizeof(*ctx)); 70 ctx->buf = calloc(depth, sizeof(*ctx->buf));
|
/external/llvm/lib/Support/Windows/ |
RWMutex.inc | 80 data_ = calloc(1, sizeof(SRWLOCK)); 83 data_ = calloc(1, sizeof(CRITICAL_SECTION));
|
/external/mesa3d/src/mesa/program/ |
hash_table.c | 144 node = calloc(1, sizeof(*node)); 169 hn = calloc(1, sizeof(*hn));
|
/external/qemu/android/ |
framebuffer.c | 103 qfbuff->extra = calloc( 1, sizeof(QFrameBufferExtra) ); 107 qfbuff->pixels = calloc( pitch, height );
|
/external/srec/srec/cfront/ |
wav_acc.c | 51 wave->income = (samdata *) CALLOC(window_size, sizeof(samdata), "cfront.wave.income"); 52 wave->outgo = (samdata *) CALLOC(window_size, sizeof(samdata), "cfront.wave.outgo");
|