/external/expat/tests/ |
minicheck.c | 18 Suite *suite = (Suite *) calloc(1, sizeof(Suite)); 28 TCase *tc = (TCase *) calloc(1, sizeof(TCase)); 78 SRunner *runner = calloc(1, sizeof(SRunner));
|
/external/ipsec-tools/src/racoon/ |
gcmalloc.h | 46 * malloc(), calloc(), realloc(), and free() entry points in the main 62 calloc(size_t number, size_t size) function 114 #define racoon_calloc(cnt, sz) calloc((cnt), (sz))
|
genlist.c | 44 struct genlist *new = calloc(sizeof(struct genlist), 1); 52 struct genlist_entry *entry = calloc(sizeof(struct genlist_entry), 1); 61 struct genlist_entry *entry = calloc(sizeof(struct genlist_entry), 1); 143 cf = calloc(sizeof(struct conf), 1);
|
/external/linux-tools-perf/ |
builtin-kvm.c | 64 rec_argv = calloc(rec_argc + 1, sizeof(char *)); 82 rec_argv = calloc(rec_argc + 1, sizeof(char *)); 100 rec_argv = calloc(rec_argc + 1, sizeof(char *));
|
/external/openssh/openbsd-compat/ |
bsd-poll.c | 58 if ((readfds = calloc(nmemb, sizeof(fd_mask))) == NULL || 59 (writefds = calloc(nmemb, sizeof(fd_mask))) == NULL || 60 (exceptfds = calloc(nmemb, sizeof(fd_mask))) == NULL) {
|
/external/valgrind/main/none/tests/ppc32/ |
lsw.c | 69 a2 = calloc(100,1); 80 a2 = calloc(100,1); 91 a2 = calloc(100,1);
|
/external/valgrind/main/none/tests/ppc64/ |
lsw.c | 69 a2 = calloc(100,1); 80 a2 = calloc(100,1); 91 a2 = calloc(100,1);
|
/external/webkit/Source/JavaScriptCore/wtf/wince/ |
MemoryManager.cpp | 24 #undef calloc macro 69 return calloc(num, size); 116 void *fastCalloc(size_t n_elements, size_t element_size) { return calloc(n_elements, element_size); }
|
/frameworks/rs/driver/ |
rsdCore.cpp | 185 RsdHal *dc = (RsdHal *)calloc(1, sizeof(RsdHal)); 187 ALOGE("Calloc for driver hal failed."); 223 void* buffer = calloc(size, sizeof(char));
|
/external/clang/test/Analysis/ |
malloc-annotations.c | 6 void *calloc(size_t nmemb, size_t size); 234 // This tests that calloc() buffers need to be freed 236 char *buf = calloc(2,2); 240 // These test that calloc() buffers are zeroed by default 242 char *buf = calloc(2,2); 251 char *buf = calloc(2,2);
|
uninit-vals.m | 7 void *calloc(size_t nmemb, size_t size); 60 Circle *testObj = calloc(sizeof(Circle), 1);
|
malloc.cpp | 7 void *calloc(size_t nmemb, size_t size);
|
/external/bison/m4/ |
malloc.m4 | 78 # Test whether malloc, realloc, calloc are POSIX compliant, 82 AC_CACHE_CHECK([whether malloc, realloc, calloc are POSIX compliant],
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_custom.h | 21 #ifdef calloc 24 #define XCALLOC calloc
|
/ndk/sources/host-tools/make-3.81/w32/subproc/ |
misc.c | 51 tmp = (char**) calloc(arrcnt + 1, sizeof(char *));
67 ptr = *envblk_out = calloc(size_needed, 1);
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
stdlib.in.h | 121 # undef calloc 122 # define calloc rpl_calloc 123 extern void * calloc (size_t nmemb, size_t size); 126 # undef calloc 127 # define calloc(n,s) \ 128 (GL_LINK_WARNING ("calloc is not POSIX compliant everywhere - " \ 129 "use gnulib module calloc-posix for portability"), \ 130 calloc (n, s))
|
/development/ndk/platforms/android-3/include/ |
malloc.h | 31 extern __mallocfunc void* calloc(size_t, size_t);
|
/external/clang/test/Analysis/Inputs/ |
system-header-simulator-for-malloc.h | 10 void *calloc(size_t, size_t);
|
/external/compiler-rt/lib/asan/ |
asan_malloc_win.cc | 55 void *calloc(size_t nmemb, size_t size) { function 61 return calloc(n, size); 65 return calloc(nmemb, size); 80 return calloc(n, elem_size);
|
/external/icu4c/tools/tzcode/ |
ialloc.c | 32 return calloc((size_t) nelem, (size_t) elsize);
|
/external/llvm/test/CodeGen/X86/ |
2012-02-20-MachineCPBug.ll | 6 declare noalias i8* @calloc(i32, i32) nounwind 11 %call = tail call i8* @calloc(i32 1, i32 32) 12 %call.i = tail call i8* @calloc(i32 1, i32 32) nounwind 74 %call.i1 = tail call i8* @calloc(i32 1, i32 32) nounwind
|
/external/speex/libspeex/ |
os_support.h | 48 /** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function, speex_realloc and speex_free 56 return calloc(size,1); 65 return calloc(size,1); 77 /** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function, speex_realloc and speex_alloc */
|
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glTransformFeedbackVaryings.cpp | 21 _varyings = (const char**)calloc(_count, sizeof(const char*));
|
/hardware/ti/omap4xxx/ |
Android.mk | 13 OMAP4_DEBUG_LDFLAGS:= $(foreach f, $(strip malloc realloc calloc free), -Wl,--wrap=$(f))
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/ |
libanl-2.7.so | |