HomeSort by relevance Sort by last modified time
    Searched refs:calloc (Results 101 - 125 of 572) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/bluetooth/glib/glib/
gmem.c 77 # define standard_calloc calloc
103 return calloc (n_blocks, n_bytes);
151 mem = glib_mem_vtable.calloc (1, n_bytes);
276 glib_mem_vtable.calloc = vtable->calloc ? vtable->calloc : fallback_calloc;
  /external/openssh/openbsd-compat/
getrrsetbyname.c 266 rrset = calloc(1, sizeof(struct rrsetinfo));
296 rrset->rri_rdatas = calloc(rrset->rri_nrdatas,
305 rrset->rri_sigs = calloc(rrset->rri_nsigs, sizeof(struct rdatainfo));
391 resp = calloc(1, sizeof(*resp));
459 curr = calloc(1, sizeof(struct dns_query));
506 curr = calloc(1, sizeof(struct dns_rr));
  /external/valgrind/main/memcheck/tests/
wrap6.c 182 UInt* words = calloc(200, sizeof(UInt));
208 UInt* words = calloc(200, sizeof(UInt));
235 UInt* words = calloc(200, sizeof(UInt));
263 UInt* words = calloc(200, sizeof(UInt));
292 UInt* words = calloc(200, sizeof(UInt));
322 UInt* words = calloc(200, sizeof(UInt));
353 UInt* words = calloc(200, sizeof(UInt));
386 UInt* words = calloc(200, sizeof(UInt));
422 UInt* words = calloc(200, sizeof(UInt));
459 UInt* words = calloc(200, sizeof(UInt))
    [all...]
  /bionic/libstdc++/include/
cstdlib 94 using ::calloc;
  /dalvik/vm/
RawDexFile.cpp 229 *ppRawDexFile = (RawDexFile*) calloc(1, sizeof(RawDexFile));
259 *ppRawDexFile = (RawDexFile*) calloc(1, sizeof(RawDexFile));
  /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/clang/test/Analysis/
taint-generic.c 29 void *calloc(size_t nmemb, size_t size);
144 char *dst = (char*)calloc(ts, sizeof(char)); //expected-warning {{Untrusted data is used to specify the buffer size}}
  /external/libsepol/src/
avrule_block.c 47 if ((block = calloc(1, sizeof(*block))) == NULL) {
57 if ((decl = calloc(1, sizeof(*decl))) == NULL) {
  /external/llvm/lib/Support/
StringMap.cpp 42 TheTable = (StringMapEntryBase **)calloc(NumBuckets+1,
201 (StringMapEntryBase **)calloc(NewSize+1, sizeof(StringMapEntryBase *) +
  /external/qemu/distrib/zlib-1.2.3/
zutil.c 296 extern voidp calloc OF((uInt items, uInt size));
307 (voidpf)calloc(items, size);
  /external/valgrind/main/coregrind/m_gdbserver/
regcache.c 101 regcache->registers = calloc (1, register_bytes);
105 regcache->register_supplied = calloc (1, num_registers);
  /external/zlib/
zutil.c 277 extern voidp calloc OF((uInt items, uInt size));
288 (voidpf)calloc(items, size);
  /ndk/sources/cxx-stl/gabi++/include/
cstdlib 94 using ::calloc;
  /ndk/sources/cxx-stl/system/include/
cstdlib 94 using ::calloc;
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
cstdlib 90 using ::calloc;
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
cstdlib 90 using ::calloc;
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/system/include/
cstdlib 94 using ::calloc;
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/system/include/
cstdlib 94 using ::calloc;
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gabi++/include/
cstdlib 94 using ::calloc;
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/system/include/
cstdlib 94 using ::calloc;
  /system/core/libcorkscrew/
ptrace.c 86 map_info_data_t* data = (map_info_data_t*)calloc(1, sizeof(map_info_data_t));
102 (ptrace_context_t*)calloc(1, sizeof(ptrace_context_t));
  /external/bison/lib/
xmalloc.c 33 /* 1 if calloc is known to be compatible with GNU calloc. This
34 matters if we are not also using the calloc module, which defines
215 /* Test for overflow, since some calloc implementations don't have
217 HAVE_GNU_CALLOC, since GNU calloc catches overflow and never
220 || (! (p = calloc (n, s)) && (HAVE_GNU_CALLOC || n != 0)))
  /external/chromium/third_party/libevent/
devpoll.c 137 if (!(devpollop = calloc(1, sizeof(struct devpollop))))
154 devpollop->events = calloc(nfiles, sizeof(struct pollfd));
162 devpollop->fds = calloc(nfiles, sizeof(struct evdevpoll));
171 devpollop->changes = calloc(nfiles, sizeof(struct pollfd));
  /external/ipsec-tools/src/racoon/
debugrm.h 44 #define racoon_calloc(cnt, sz) calloc((cnt), (sz))

Completed in 1430 milliseconds

1 2 3 45 6 7 8 91011>>