Searched refs:emalloc (Results 1 - 25 of 100) sorted by relevance

1234

/freebsd-10.1-release/sbin/rcorder/
H A Dealloc.h4 void *emalloc(size_t len);
H A Dealloc.c67 * emalloc --
71 emalloc(size_t len) function
H A Drcorder.c214 ent = emalloc(sizeof *ent + strlen(s));
236 temp = emalloc(sizeof(*temp));
269 rnode = emalloc(sizeof(*rnode));
292 head = emalloc(sizeof(*head));
339 pnode = emalloc(sizeof(*pnode));
349 f_pnode = emalloc(sizeof(*f_pnode));
363 bf_ent = emalloc(sizeof *bf_ent + strlen(s));
526 head = emalloc(sizeof(*head));
533 pnode = emalloc(sizeof(*pnode));
543 f_pnode = emalloc(sizeo
[all...]
H A Dhash.c129 t->bucketPtr = hp = (struct Hash_Entry **)emalloc(sizeof(*hp) * i);
264 e = (Hash_Entry *) emalloc(sizeof(*e) + keylen);
423 t->bucketPtr = hp = (struct Hash_Entry **) emalloc(sizeof(*hp) * i);
/freebsd-10.1-release/crypto/heimdal/lib/roken/
H A Demalloc.c46 emalloc (size_t sz) function
/freebsd-10.1-release/usr.sbin/jail/
H A Djailparse.y93 $$ = emalloc(sizeof(struct cfparams));
142 $$ = emalloc(sizeof(struct cfparam));
149 $$ = emalloc(sizeof(struct cfparam));
158 $$ = emalloc(sizeof(struct cfstrings));
175 $$ = emalloc(sizeof(struct cfstring));
184 $$ = emalloc(sizeof(struct cfstring));
188 v = emalloc(sizeof(struct cfvar));
209 v = emalloc(sizeof(struct cfvar));
/freebsd-10.1-release/contrib/bmake/
H A Dmake_malloc.h36 #define bmake_malloc(x) emalloc(x)
/freebsd-10.1-release/sbin/fsck/
H A Dfsutil.h37 void *emalloc(size_t);
/freebsd-10.1-release/usr.bin/make/
H A Dlst.c66 nLNode = emalloc(sizeof(*nLNode));
146 nln = emalloc(sizeof(*nln));
269 nLNode = emalloc(sizeof(*nLNode));
H A Dbuf.c182 bp = emalloc(sizeof(*bp));
184 bp->buf = emalloc(size);
H A Dutil.h111 void *emalloc(size_t);
H A Darch.c355 buf = emalloc(sz);
399 nameBuf = emalloc(sz);
434 nameBuf = emalloc(sz);
505 ar = emalloc(sizeof(*ar));
508 ar->member = emalloc(ar->mlen);
615 ar->nametab = emalloc(ar->nametablen);
932 ar = emalloc(sizeof(*ar));
938 Hash_SetValue(he, emalloc(sizeof(int64_t)));
1145 libName = emalloc(sz);
H A Dhash.c109 t->bucketPtr = hp = emalloc(sizeof(*hp) * i);
235 e = emalloc(sizeof(*e) + keylen);
386 t->bucketPtr = hp = emalloc(sizeof(*hp) * i);
H A Dstr.c63 aa->argv = emalloc((aa->size + 1) * sizeof(char *));
115 result = emalloc(len1 + len2 + 2);
294 ret = emalloc(strlen(str) * 2 + 1);
H A Ddir.c430 file = emalloc(otherLen + cp - start + 1);
1029 pe = emalloc(sizeof(*pe));
1043 d = emalloc(sizeof(*d));
1078 pe = emalloc(sizeof(*pe));
1101 ped = emalloc(sizeof(*ped));
1186 p1 = emalloc(sizeof(*p1));
/freebsd-10.1-release/contrib/ntp/ntpd/
H A Dntp_prio_q.c35 my_queue = emalloc(sizeof(queue));
86 new_node = emalloc(sizeof(*new_node) + size);
/freebsd-10.1-release/crypto/heimdal/lib/asn1/
H A Dsymbol.c81 s = (Symbol *) emalloc(sizeof(*s));
H A Dasn1parse.y307 $$ = emalloc(sizeof(*$$));
313 $$ = emalloc(sizeof(*$$));
415 $$ = emalloc(sizeof(*$$));
430 $$ = emalloc(sizeof(*$$));
455 $$->members = emalloc(sizeof(*$$->members));
747 $$ = emalloc(sizeof(*$$));
769 $$ = emalloc(sizeof(*$$));
800 $$ = emalloc(sizeof(*$$));
813 $$ = emalloc(sizeof(*$$));
900 $$ = emalloc(sizeo
[all...]
/freebsd-10.1-release/contrib/ntp/include/isc/
H A Dmem.h49 ( ISC_MEM_UNUSED_ARG(c), emalloc(cnt) )
/freebsd-10.1-release/contrib/ntp/libntp/
H A Demalloc.c2 * emalloc - return new memory obtained from the system. Belch if none.
15 * allocations to show up as coming from emalloc.c, so we preserve the
143 emalloc(size_t newsz)
H A Dmachines.c43 host1 = (struct hostent *) emalloc (sizeof(struct hostent));
57 host1 = (struct hostent *) emalloc (sizeof(struct hostent));
69 serv1 = (struct servent *) emalloc (sizeof(struct servent));
/freebsd-10.1-release/contrib/ntp/sntp/tests/
H A DfileHandlingTest.c19 char * path = emalloc(plen);
/freebsd-10.1-release/crypto/heimdal/lib/krb5/
H A Daes-test.c338 iov[0].data.data = emalloc(iov[0].data.length);
342 iov[1].data.data = emalloc(iov[1].data.length);
348 iov[2].data.data = emalloc(iov[2].data.length);
352 iov[3].data.data = emalloc(iov[3].data.length);
369 p = q = emalloc(len);
388 p = q = emalloc(iov[1].data.length + iov[2].data.length);
441 iov[0].data.data = emalloc(iov[0].data.length);
448 iov[1].data.data = emalloc(iov[1].data.length);
454 iov[2].data.data = emalloc(len);
493 iov[0].data.data = emalloc(io
[all...]
/freebsd-10.1-release/sbin/quotacheck/
H A Dpreen.c84 extern void *emalloc(size_t);
240 d = emalloc(sizeof(*d));
263 p = emalloc(sizeof(*p));
/freebsd-10.1-release/crypto/heimdal/appl/test/
H A Dgss_common.c79 buf->value = emalloc(len);

Completed in 233 milliseconds

1234