HomeSort by relevance Sort by last modified time
    Searched full:calloc (Results 76 - 100 of 1932) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/valgrind/memcheck/tests/
partial_load_ok.stderr.exp 5 at 0x........: calloc (vg_replace_malloc.c:...)
11 at 0x........: calloc (vg_replace_malloc.c:...)
partial_load_ok.stderr.exp64 5 at 0x........: calloc (vg_replace_malloc.c:...)
11 at 0x........: calloc (vg_replace_malloc.c:...)
  /external/google-breakpad/src/third_party/libdisasm/swig/
libdisasm_oop.i 180 calloc( sizeof(x86_reg_t), 1 );
210 buf = (char * ) calloc( len + 1, 1 );
239 x86_op_t *op = (x86_op_t *) calloc( sizeof(x86_op_t), 1 );
266 calloc( sizeof(X86_OpList), 1 );
318 calloc( sizeof(X86_OpListNode) , 1 );
352 ptr = (x86_oplist_t *) calloc( sizeof(x86_oplist_t), 1 );
533 calloc( sizeof(x86_insn_t), 1 );
606 buf = (char * ) calloc( len + 1, 1 );
620 buf = (char * ) calloc( len, 1 );
634 calloc( sizeof(x86_insn_t), 1 )
    [all...]
  /external/f2fs-tools/mkfs/
f2fs_format.c 380 zero_buf = calloc(sizeof(u_int8_t), seg_size);
382 MSG(1, "\tError: Calloc Failed for sit_zero_buf!!!\n");
414 nat_buf = calloc(sizeof(u_int8_t), seg_size);
416 MSG(1, "\tError: Calloc Failed for nat_zero_blk!!!\n");
450 cp = calloc(F2FS_BLKSIZE, 1);
452 MSG(1, "\tError: Calloc Failed for f2fs_checkpoint!!!\n");
456 sum = calloc(F2FS_BLKSIZE, 1);
458 MSG(1, "\tError: Calloc Failed for summay_node!!!\n");
462 sum_compact = calloc(F2FS_BLKSIZE, 1);
464 MSG(1, "\tError: Calloc Failed for summay buffer!!!\n")
    [all...]
  /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/openssh/openbsd-compat/
bsd-poll.c 61 if ((readfds = calloc(nmemb, sizeof(fd_mask))) == NULL ||
62 (writefds = calloc(nmemb, sizeof(fd_mask))) == NULL ||
63 (exceptfds = calloc(nmemb, sizeof(fd_mask))) == NULL) {
  /external/valgrind/none/tests/ppc32/
lsw.c 69 a2 = calloc(100,1);
80 a2 = calloc(100,1);
91 a2 = calloc(100,1);
  /external/valgrind/none/tests/ppc64/
lsw.c 69 a2 = calloc(100,1);
80 a2 = calloc(100,1);
91 a2 = calloc(100,1);
  /external/clang/test/Analysis/
malloc-annotations.c 6 void *calloc(size_t nmemb, size_t size);
239 // This tests that calloc() buffers need to be freed
241 char *buf = calloc(2,2);
245 // These test that calloc() buffers are zeroed by default
247 char *buf = calloc(2,2);
256 char *buf = calloc(2,2);
  /external/cmockery/cmockery_0_1_2/src/example/
calculator.c 54 /* Redirect calloc and free to test_calloc() and test_free() so cmockery can
56 #ifdef calloc
57 #undef calloc macro
58 #endif // calloc
59 #define calloc(num, size) _test_calloc(num, size, __FILE__, __LINE__) macro
187 *intermediate_values = calloc(((number_of_arguments - 1) / 2),
allocate_module.c 25 #define calloc(num, size) _test_calloc(num, size, __FILE__, __LINE__) macro
  /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/pdfium/core/include/fxcrt/
fx_memory.h 37 if (void* result = calloc(num_members, member_size)) {
67 #define FX_TryAlloc(type, size) (type*)calloc(size, sizeof(type))
  /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);
  /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/elfutils/src/libdwfl/
dwfl_begin.c 40 Dwfl *dwfl = calloc (1, sizeof *dwfl);
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.h 15 # define calloc je_calloc macro
jemalloc_mangle_jet.h 15 # define calloc jet_calloc macro
  /external/libexif/libexif/
exif-mem.c 16 return calloc ((size_t) ds, 1);
  /external/llvm/utils/valgrind/
x86_64-pc-linux-gnu.supp 65 fun:calloc
  /external/selinux/libselinux/src/
is_customizable_type.c 34 (char **) calloc(sizeof(char *),
  /external/skia/src/ports/
SkMemory_malloc.cpp 63 return calloc(size, 1);

Completed in 649 milliseconds

1 2 34 5 6 7 8 91011>>