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

1234

/freebsd-current/sbin/rcorder/
H A Dealloc.h3 void *emalloc(size_t len);
H A Dealloc.c68 * emalloc --
72 emalloc(size_t len) function
H A Drcorder.c243 ent = emalloc(sizeof *ent + strlen(s));
265 temp = emalloc(sizeof(*temp));
298 rnode = emalloc(sizeof(*rnode));
321 head = emalloc(sizeof(*head));
369 pnode = emalloc(sizeof(*pnode));
379 f_pnode = emalloc(sizeof(*f_pnode));
394 bf_ent = emalloc(sizeof *bf_ent + strlen(s));
557 head = emalloc(sizeof(*head));
564 pnode = emalloc(sizeof(*pnode));
574 f_pnode = emalloc(sizeo
[all...]
H A Dhash.c117 t->bucketPtr = hp = (struct Hash_Entry **)emalloc(sizeof(*hp) * i);
252 e = (Hash_Entry *) emalloc(sizeof(*e) + keylen);
411 t->bucketPtr = hp = (struct Hash_Entry **) emalloc(sizeof(*hp) * i);
/freebsd-current/crypto/heimdal/lib/roken/
H A Demalloc.c46 emalloc (size_t sz) function
/freebsd-current/contrib/netbsd-tests/lib/libutil/
H A Dt_efun.c90 ATF_TC(emalloc); variable
91 ATF_TC_HEAD(emalloc, tc)
93 atf_tc_set_md_var(tc, "descr", "A basic test of emalloc(3)");
96 ATF_TC_BODY(emalloc, tc)
101 x = emalloc(-1);
131 ATF_TP_ADD_TC(tp, emalloc);
/freebsd-current/usr.sbin/jail/
H A Djailparse.y108 j->name = emalloc(parentlen + strlen($1) + 2);
156 $$ = emalloc(sizeof(struct cfparam));
163 $$ = emalloc(sizeof(struct cfparam));
172 $$ = emalloc(sizeof(struct cfstrings));
189 $$ = emalloc(sizeof(struct cfstring));
198 $$ = emalloc(sizeof(struct cfstring));
202 v = emalloc(sizeof(struct cfvar));
223 v = emalloc(sizeof(struct cfvar));
/freebsd-current/contrib/bmake/
H A Dmake_malloc.h36 #define bmake_malloc(n) emalloc(n)
/freebsd-current/sbin/fsck/
H A Dfsutil.h40 void *emalloc(size_t);
H A Dfsutil.c190 emalloc(size_t s) function
/freebsd-current/lib/libnetbsd/
H A Dutil.h46 void *emalloc(size_t);
H A Defun.c105 emalloc(size_t n) function
/freebsd-current/contrib/ntp/ntpd/
H A Dntp_prio_q.c35 my_queue = emalloc(sizeof(queue));
86 new_node = emalloc(sizeof(*new_node) + size);
H A Dntp_filegen.c114 filename = emalloc(len);
115 fullname = emalloc(len);
230 savename = emalloc(len);
587 *ppfe = emalloc(sizeof **ppfe);
H A Dntp_clockdev.c158 item = emalloc(sizeof(*item));
/freebsd-current/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
144 emalloc(size_t newsz)
H A Dmachines.c42 host1 = (struct hostent *) emalloc (sizeof(struct hostent));
56 host1 = (struct hostent *) emalloc (sizeof(struct hostent));
68 serv1 = (struct servent *) emalloc (sizeof(struct servent));
/freebsd-current/contrib/ntp/include/isc/
H A Dmem.h49 ( ISC_MEM_UNUSED_ARG(c), emalloc(cnt) )
/freebsd-current/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-current/contrib/ntp/sntp/tests/
H A DfileHandlingTest.c19 char * path = emalloc(plen);
/freebsd-current/contrib/netbsd-tests/fs/puffs/h_dtfs/
H A Ddtfs_subr.c110 dfd = emalloc(sizeof(struct dtfs_dirent));
128 dff = emalloc(sizeof(struct dtfs_file));
140 dff = emalloc(sizeof(struct dtfs_file));
263 df->df_blocks[i] = emalloc(DTFS_BLOCKSIZE);
/freebsd-current/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-current/sbin/quotacheck/
H A Dpreen.c77 extern void *emalloc(size_t);
233 d = emalloc(sizeof(*d));
256 p = emalloc(sizeof(*p));
/freebsd-current/crypto/heimdal/appl/test/
H A Dgss_common.c79 buf->value = emalloc(len);

Completed in 332 milliseconds

1234