Searched refs:calloc (Results 1 - 25 of 982) sorted by relevance

1234567891011>>

/macosx-10.10/text_cmds-88/sort/
H A Dcalloc.c0 /* calloc() function that is glibc compatible.
24 #undef calloc macro
37 return calloc (1, 1);
39 /* Defend against buggy calloc implementations that mishandle
45 return calloc (n, s);
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dxmldef.h28 #define calloc(x, y) PR_Calloc((x),(y)) macro
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Decalloc.c42 * Like calloc but never fails.
48 void *tmp = calloc (number, size);
51 errx (1, "calloc %lu failed", (unsigned long)number * size);
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dcalloc.c0 /* calloc -- allocate memory which has been initialized to zero.
6 @deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize})
23 calloc (size_t nelem, size_t elsize) function
/macosx-10.10/swig-12/Lib/
H A Dcmalloc.i16 %calloc(TYPE [, NAME = TYPE])
44 %define %calloc(TYPE,NAME...)
46 %rename(calloc_##NAME) ::calloc(int nobj, int sz);
48 %rename(calloc_##TYPE) ::calloc(int nobj, int sz);
56 TYPE *calloc(int nobj, int sz);
102 %calloc(TYPE,NAME)
H A Dcpointer.i65 return (TYPE *) calloc(1,sizeof(TYPE));
124 %{ return (TYPE *) calloc(1,sizeof(TYPE)); %}
132 %{ TYPE *self = (TYPE *) calloc(1,sizeof(TYPE));
/macosx-10.10/gnudiff-19/diffutils/lib/
H A Dxmalloc.c27 void *calloc ();
109 p = calloc (n, s);
/macosx-10.10/gpatch-3/patch/
H A Dxmalloc.c27 void *calloc ();
109 p = calloc (n, s);
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxml/expat/xmltok/
H A Dxmldef.h40 #define calloc(x, y) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (x)*(y)) macro
59 #define calloc(x, y) PR_Calloc((x),(y)) macro
/macosx-10.10/Libinfo-459/rpc.subproj/
H A Dtypes.h86 #define mem_alloc(bsize) calloc(1, bsize)
/macosx-10.10/libunwind-35.3/testsuite/
H A DUnwind_ForcedUnwind.cxx39 _Unwind_Exception* except_obj = (_Unwind_Exception*)calloc(sizeof(_Unwind_Exception), 1);
/macosx-10.10/Libc-1044.1.2/regex/TRE/lib/
H A Dxmalloc.h54 #undef calloc macro
59 #define calloc USE_XCALLOC_INSTEAD_OF_CALLOC macro
68 #define xcalloc(nmemb, size) calloc(nmemb, size)
/macosx-10.10/curl-83.1.2/curl/src/
H A Dtool_mfiles.c68 multi = calloc(1, sizeof(struct multi_files));
80 multi_type = calloc(1, sizeof(struct multi_files));
93 multi_name = calloc(1, sizeof(struct multi_files));
/macosx-10.10/swig-12/Lib/typemaps/
H A Dcmalloc.swg16 %calloc(TYPE [, NAME = TYPE])
44 %define %calloc(TYPE,NAME...)
46 %rename(calloc_##NAME) ::calloc(size_t nobj, size_t sz);
48 %rename(calloc_##TYPE) ::calloc(size_t nobj, size_t sz);
56 TYPE *calloc(size_t nobj, size_t sz);
102 %calloc(TYPE,NAME)
/macosx-10.10/network_cmds-457/mptcp_client/
H A Dconn_lib.c70 buf = calloc(aidr.sar_cnt, sizeof (associd_t));
118 buf = calloc(cidr.scr_cnt, sizeof (connid_t));
161 src = calloc(1, scir.scir_src_len);
167 dst = calloc(1, scir.scir_dst_len);
173 aux = calloc(1, scir.scir_aux_len);
182 buf = calloc(1, sizeof (*buf));
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dauthutilities.c44 set = (AuthorizationItemSet*)calloc(1u, sizeof(AuthorizationItemSet));
49 set->items = (AuthorizationItem*)calloc(set->count, sizeof(AuthorizationItem));
58 set->items[index].name = calloc(1u, nameLen);
68 set->items[index].value = calloc(1u, len);
114 result = (char*)calloc(1u, (size_t)size);
124 result = (char*)calloc(1u, len);
184 result = calloc(1u, len);
199 result = calloc(1u, dataLen);
216 values = calloc((size_t)count, sizeof(CFTypeRef));
240 values = calloc((size_
[all...]
/macosx-10.10/curl-83.1.2/curl/tests/unit/
H A Dunit1305.c84 if((ai = calloc(1, sizeof(Curl_addrinfo))) == NULL)
92 if((ai->ai_addr = calloc(1, ss_size)) == NULL) {
110 data_node = calloc(1, sizeof(struct Curl_dns_entry));
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dcopy_host_realm.c60 *to = calloc (n, sizeof(**to));
/macosx-10.10/cups-408/cups/cgi-bin/
H A Dsearch.c57 if ((re = (regex_t *)calloc(1, sizeof(regex_t))) == NULL)
/macosx-10.10/cups-408/cups/cups/
H A Dgetifaddrs.c121 if ((temp = calloc(1, sizeof(struct ifaddrs))) == NULL)
140 if ((temp->ifa_addr = calloc(1, sockaddr_len(&(ifp->ifr_addr)))) != NULL)
153 if ((temp->ifa_netmask = calloc(1, sizeof(request.ifr_netmask))) != NULL)
176 calloc(1, sizeof(request.ifr_broadaddr))) != NULL)
/macosx-10.10/emacs-93/emacs/oldXMenu/
H A DXCrAssoc.c37 /* calloc the buckets (actually just their headers). */
38 buckets = (XAssoc *)calloc((unsigned)size, (unsigned)sizeof(XAssoc));
40 /* calloc call failed! */
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dgenlist.c42 struct genlist *new = calloc(sizeof(struct genlist), 1);
50 struct genlist_entry *entry = calloc(sizeof(struct genlist_entry), 1);
59 struct genlist_entry *entry = calloc(sizeof(struct genlist_entry), 1);
141 cf = calloc(sizeof(struct conf), 1);
/macosx-10.10/Heimdal-398.1.2/kdc/
H A Dheaders.h115 #define ALLOC(X) ((X) = calloc(1, sizeof(*(X))))
118 (X)->val = calloc((X)->len, sizeof(*(X)->val)); } while(0)
/macosx-10.10/Heimdal-398.1.2/lib/hdb/
H A Dhdb_locl.h113 #define ALLOC(X) ((X) = calloc(1, sizeof(*(X))))
116 (X)->val = calloc((X)->len, sizeof(*(X)->val)); } while(0)
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dcurl_memory.h29 * that use memory related functions strdup, malloc, calloc, realloc
97 * libcurl's 'memory tracking' system defines strdup, malloc, calloc,
109 #undef calloc macro
110 #define calloc(nbelem,size) Curl_ccalloc(nbelem, size) macro

Completed in 166 milliseconds

1234567891011>>