/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
extensions.c | [all...] |
imports.h | 55 #define CALLOC(BYTES) calloc(1, BYTES) 59 #define CALLOC_STRUCT(T) (struct T *) calloc(1, sizeof(struct T))
|
/external/compiler-rt/lib/asan/tests/ |
asan_noinst_test.cc | 766 void *p = calloc(kArraySize, kArraySize2); // Should return 0. 774 void *p = calloc(kArraySize, kArraySize2); // Should return 0. 784 char *x = Ident((char*)calloc(1, size));
|
asan_test.cc | 109 int *a = (int*)calloc(100, sizeof(int)); 238 EXPECT_EQ(0, calloc(1, kOOMAllocationSize)); 239 EXPECT_EQ(0, calloc(1, ~Ident(0))); [all...] |
/external/mesa3d/src/mesa/main/ |
atifragshader.c | 356 calloc(1, sizeof(struct atifs_instruction) * 360 calloc(1, sizeof(struct atifs_setupinst) * 364 /* can't rely on calloc for initialization as it's possible to redefine a shader (?) */
|
extensions.c | [all...] |
imports.h | 55 #define CALLOC(BYTES) calloc(1, BYTES) 59 #define CALLOC_STRUCT(T) (struct T *) calloc(1, sizeof(struct T))
|
/external/tinyalsa/ |
pcm.c | 280 pcm->sync_ptr = calloc(1, sizeof(*pcm->sync_ptr)); 480 params = calloc(1, sizeof(struct snd_pcm_hw_params)); 618 pcm = calloc(1, sizeof(struct pcm));
|
/external/valgrind/main/memcheck/tests/ |
Makefile.am | 72 calloc-overflow.stderr.exp calloc-overflow.vgtest\ 242 calloc-overflow \
|
/external/zlib/src/test/ |
example.c | 63 return calloc(n, m); 565 compr = (Byte*)calloc((uInt)comprLen, 1); 566 uncompr = (Byte*)calloc((uInt)uncomprLen, 1);
|
/hardware/libhardware/modules/audio_remote_submix/ |
audio_hw.cpp | 523 out = (struct submix_stream_out *)calloc(1, sizeof(struct submix_stream_out)); 684 in = (struct submix_stream_in *)calloc(1, sizeof(struct submix_stream_in)); 778 rsxadev = (submix_audio_device*) calloc(1, sizeof(struct submix_audio_device));
|
/system/core/adb/ |
jdwp_service.c | 197 JdwpProcess* proc = calloc(1,sizeof(*proc)); 603 JdwpSocket* s = calloc(sizeof(*s),1); 698 JdwpTracker* t = calloc(sizeof(*t),1);
|
sockets.c | 395 asocket *s = calloc(1, sizeof(asocket)); 524 asocket *s = calloc(1, sizeof(aremotesocket)); 850 asocket *s = calloc(1, sizeof(asocket));
|
/system/core/fs_mgr/ |
fs_mgr.c | 344 fstab = calloc(1, sizeof(struct fstab)); 347 fstab->recs = calloc(fstab->num_entries, sizeof(struct fstab_rec)); 448 /* Free the fstab_recs array created by calloc(3) */
|
/external/chromium_org/third_party/libusb/src/libusb/os/ |
windows_usb.c | 205 if ((ret_path = (char*) calloc(size, 1)) == NULL) 345 if ((dev_interface_details = (SP_DEVICE_INTERFACE_DETAIL_DATA_A*) calloc(size, 1)) == NULL) { 496 htab_table = (htab_entry*) calloc(htab_size + 1, sizeof(htab_entry)); 699 tmp_str = (char*) calloc(len+1, 1); [all...] |
/external/opencv/cvaux/src/ |
cvepilines.cpp | [all...] |
/device/samsung/manta/audio/ |
audio_hw.c | [all...] |
/external/bison/m4/ |
gnulib-comp.m4 | 51 # Code from module calloc-posix: 262 AC_LIBOBJ([calloc]) 264 gl_STDLIB_MODULE_INDICATOR([calloc-posix]) 934 lib/calloc.c [all...] |
/external/qemu/telephony/ |
sms.c | 1203 p = calloc( sizeof(*p), 1 ); 1286 list = calloc( sizeof(SmsPDU*), num_pdus + 1 ); [all...] |
/external/blktrace/ |
blktrace.c | 1009 cl_fds = calloc(ncpus, sizeof(*cl_fds)); 1056 dpp->stats = calloc(dpp->ncpus, sizeof(*dpp->stats)); 1158 dpp->heads = calloc(ncpus, sizeof(struct tracer_devpath_head)); [all...] |
/external/flac/libFLAC/ |
metadata_object.c | 440 object = (FLAC__StreamMetadata*)calloc(1, sizeof(FLAC__StreamMetadata)); 449 /* calloc() took care of this for us: 455 /* calloc() took care of this for us: 460 /* calloc() took care of this for us: 492 /* calloc() took care of this for us: 513 /* calloc() took care of this for us: [all...] |
/external/chromium_org/tools/valgrind/memcheck/ |
suppressions.txt | 106 fun:calloc 324 fun:calloc 594 fun:calloc [all...] |
/external/libpcap/ |
optimize.c | [all...] |
/external/bluetooth/bluedroid/btif/co/ |
bta_fs_co.c | 682 dirName = (char*) calloc(1, path_len+1); 785 dirName= (char*) calloc(1, strlen(p_path)); /* <--- this can cause problems */ 787 dirName= (char*) calloc(1, strlen(p_path) + 1); [all...] |
/external/clang/test/Analysis/ |
unix-fns.c | 15 void *calloc(size_t, size_t); 94 char *foo = calloc(0, 42); // expected-warning{{Call to 'calloc' has an allocation size of 0 bytes}} 100 char *foo = calloc(42, 0); // expected-warning{{Call to 'calloc' has an allocation size of 0 bytes}} 106 char *foo = calloc(nmemb, size); // no-warning [all...] |