/external/mesa3d/src/gbm/backends/dri/ |
gbm_dri.c | 420 bo = calloc(1, sizeof *bo); 468 bo = calloc(1, sizeof *bo); 525 bo = calloc(1, sizeof *bo); 583 surf = calloc(1, sizeof *surf); 623 dri = calloc(1, sizeof *dri);
|
/external/mesa3d/src/glsl/ |
ralloc.h | 106 * This is similar to \c calloc with a size of 1. 130 * Similar to \c calloc, but does not initialize the memory to zero. 147 * Similar to \c calloc. 183 * Similar to \c calloc, but does not initialize the memory to zero. 193 * Similar to \c calloc.
|
/external/tinyalsa/ |
mixer.c | 110 mixer = calloc(1, sizeof(*mixer)); 114 mixer->ctl = calloc(elist.count, sizeof(struct mixer_ctl)); 115 mixer->elem_info = calloc(elist.count, sizeof(struct snd_ctl_elem_info)); 122 eid = calloc(elist.count, sizeof(struct snd_ctl_elem_id)); 141 char **enames = calloc(ei->value.enumerated.items, sizeof(char*));
|
/system/core/libsparse/ |
output_file.c | 564 out->zero_buf = calloc(block_size, 1); 570 out->fill_buf = calloc(block_size, 1); 617 struct output_file_gz *outgz = calloc(1, sizeof(struct output_file_gz)); 630 struct output_file_normal *outn = calloc(1, sizeof(struct output_file_normal)); 648 outc = calloc(1, sizeof(struct output_file_callback));
|
/system/core/libusbhost/ |
usbhost.c | 159 struct usb_host_context *context = calloc(1, sizeof(struct usb_host_context)); 355 struct usb_device *device = calloc(1, sizeof(struct usb_device)); 426 char* result = (char *)calloc(1, strlen(USB_FS_ID_FORMAT)); 608 struct usbdevfs_urb *urb = calloc(1, sizeof(struct usbdevfs_urb)); 623 struct usb_request *req = calloc(1, sizeof(struct usb_request));
|
/external/chromium_org/base/process/ |
memory_mac.mm | 255 // === C malloc/calloc/valloc/realloc/posix_memalign === 524 return calloc(num_items, size); 533 // === C malloc/calloc/valloc/realloc/posix_memalign === 579 g_old_calloc = default_zone->calloc; 588 default_zone->calloc = oom_killer_calloc; 603 g_old_calloc_purgeable = purgeable_zone->calloc; 613 purgeable_zone->calloc = oom_killer_calloc_purgeable;
|
/external/valgrind/unittest/ |
posix_tests.cc | 254 int *CALLOC; 272 (*CALLOC)++; 290 CALLOC = (int*)calloc(1, sizeof(int)); 307 ANNOTATE_EXPECT_RACE(CALLOC, "real race on a calloc-ed object"); 326 free(CALLOC);
|
/system/core/init/ |
init_parser.c | 314 import = calloc(1, sizeof(struct import)); 574 act = calloc(1, sizeof(*act)); 579 cmd = calloc(1, sizeof(*cmd)); 632 svc = calloc(1, sizeof(*svc) + sizeof(char*) * nargs); 763 ei = calloc(1, sizeof(*ei)); 785 si = calloc(1, sizeof(*si)); 832 act = calloc(1, sizeof(*act));
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
compute_memory_pool.c | 80 CALLOC(sizeof(struct compute_memory_pool), 1); 97 * pool->shadow = (uint32_t*)CALLOC(4, pool->size_in_dw); 396 CALLOC(sizeof(struct compute_memory_item), 1);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/ |
xa_tracker.c | 139 struct xa_tracker *xa = calloc(1, sizeof(struct xa_tracker)); 159 xa->supported_formats = calloc(num_formats, sizeof(*xa->supported_formats)); 302 srf = calloc(1, sizeof(*srf));
|
/external/chromium_org/tools/valgrind/memcheck/ |
suppressions_mac.txt | 66 fun:calloc 339 fun:calloc 363 fun:calloc 383 fun:calloc 763 fun:calloc 981 fun:calloc 1002 fun:calloc [all...] |
/external/mesa3d/src/gallium/drivers/r600/ |
compute_memory_pool.c | 80 CALLOC(sizeof(struct compute_memory_pool), 1); 97 * pool->shadow = (uint32_t*)CALLOC(4, pool->size_in_dw); 396 CALLOC(sizeof(struct compute_memory_item), 1);
|
/external/mesa3d/src/gallium/state_trackers/xa/ |
xa_tracker.c | 139 struct xa_tracker *xa = calloc(1, sizeof(struct xa_tracker)); 159 xa->supported_formats = calloc(num_formats, sizeof(*xa->supported_formats)); 302 srf = calloc(1, sizeof(*srf));
|
/external/valgrind/main/coregrind/ |
m_hashtable.c | 72 VgHashTable table = VG_(calloc)("hashtable.Hc.1", 74 table->chains = VG_(calloc)("hashtable.Hc.2", 1, sz); 123 chains = VG_(calloc)("hashtable.resize.1", 1, sz);
|
/frameworks/rs/cpp/ |
Element.cpp | 392 const char ** nameArray = (const char **)calloc(fieldCount, sizeof(char *)); 393 const Element ** elementArray = (const Element **)calloc(fieldCount, sizeof(Element *)); 394 size_t* sizeArray = (size_t*)calloc(fieldCount, sizeof(size_t));
|
/hardware/libhardware/modules/audio/ |
audio_hw.c | 227 out = (struct stub_stream_out *)calloc(1, sizeof(struct stub_stream_out)); 336 in = (struct stub_stream_in *)calloc(1, sizeof(struct stub_stream_in)); 391 adev = calloc(1, sizeof(struct stub_audio_device));
|
/system/extras/librank/ |
librank.c | 103 library = calloc(1, sizeof(*library)); 146 mapping = calloc(1, sizeof(*mapping)); 162 process = calloc(1, sizeof(*process));
|
/bionic/libstdc++/include/ |
cstdlib | 94 using ::calloc;
|
/bootable/recovery/minadbd/ |
usb_linux_client.c | 118 h = calloc(1, sizeof(usb_handle));
|
/external/chromium/base/allocator/ |
allocator_unittests.cc | 279 char* p = reinterpret_cast<char*>(calloc(n, s)); 281 EXPECT_EQ(NULL, p) << "calloc(n, s) should not succeed"; 284 "calloc(n, s) should succeed"; 367 TEST(Allocators, Calloc) {
|
/external/chromium/base/ |
file_version_info_win.cc | 53 void* data = calloc(length, 1);
|
/external/chromium/crypto/ |
cssm_init.cc | 36 return calloc(num, size);
|
/external/chromium/third_party/libevent/ |
evrpc.c | 66 struct evrpc_base* base = calloc(1, sizeof(struct evrpc_base)); 119 hook = calloc(1, sizeof(struct evrpc_hook)); 278 rpc_state = calloc(1, sizeof(struct evrpc_req_generic)); 385 struct evrpc_pool *pool = calloc(1, sizeof(struct evrpc_pool));
|
/external/chromium_org/base/allocator/ |
allocator_unittests.cc | 278 char* p = reinterpret_cast<char*>(calloc(n, s)); 280 EXPECT_EQ(NULL, p) << "calloc(n, s) should not succeed"; 283 "calloc(n, s) should succeed"; 366 TEST(Allocators, Calloc) {
|
/external/chromium_org/base/ |
file_version_info_win.cc | 60 void* data = calloc(length, 1);
|