Searched refs:xalloc (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-11-stable/usr.bin/xlint/lint2/
H A Dexterns2.h74 extern void *xalloc(size_t);
H A Dmem2.c71 * malloc(). This is possible because memory allocated by xalloc()
75 xalloc(size_t sz) function
H A Dread.c276 fcall = xalloc(sizeof (fcall_t));
304 ai = xalloc(sizeof (arginf_t));
489 symp = xalloc(sizeof (sym_t));
492 symp = xalloc(sizeof (symp->s_s));
517 usym = xalloc(sizeof (usym_t));
559 tp = xalloc(sizeof (type_t));
954 name = xalloc(len + 1);
958 thte = xalloc(sizeof (thtab_t));
/freebsd-11-stable/usr.bin/m4/
H A Dlook.c86 return xalloc(s, "element alloc");
163 n->d = xalloc(sizeof(struct macro_definition), NULL);
176 d = xalloc(sizeof(struct macro_definition), NULL);
234 name2 = xalloc(strlen(name)+3+1, NULL);
242 n->d = xalloc(sizeof(struct macro_definition), NULL);
H A Dmisc.c167 strspace = xalloc(strsize+1, NULL);
170 buf = xalloc(bufsize, NULL);
298 xalloc(size_t n, const char *fmt, ...) function
H A Dextern.h108 extern void *xalloc(size_t, const char *, ...);
H A Dmain.c183 sstack = xalloc(STACKMAX, NULL);
H A Dgnum4.c257 errbuf = xalloc(errlen,
/freebsd-11-stable/contrib/diff/lib/
H A Dprepargs.c28 #include <xalloc.h>
/freebsd-11-stable/contrib/sendmail/rmail/
H A Drmail.c72 static char *xalloc __P((int));
74 #define newstr(s) strcpy(xalloc(strlen(s) + 1), s)
77 xalloc(sz) function
275 args = (char **)xalloc(sizeof(*args) * (10 + argc));
/freebsd-11-stable/contrib/libstdc++/src/
H A Dios.cc104 ios_base::xalloc() throw() function in class:ios_base
/freebsd-11-stable/contrib/diff/src/
H A Ddir.c28 #include <xalloc.h>
H A Difdef.c25 #include <xalloc.h>
H A Dcmp.c39 #include <xalloc.h>
H A Dutil.c27 #include <xalloc.h>
/freebsd-11-stable/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmpimport.c112 xalloc(size_t size) function
128 return (strcpy(xalloc(strlen(s) + 1), s));
160 ip = xalloc(sizeof(*ip));
194 fn = xalloc(strlen(path) + strlen(fname) + 2);
/freebsd-11-stable/contrib/bsnmp/gensnmptree/
H A Dgensnmptree.c210 xalloc(size_t size) function
226 return (strcpy(xalloc(strlen(s) + 1), s));
270 ip = xalloc(sizeof(*ip));
304 fn = xalloc(strlen(path) + strlen(fname) + 2);
694 t = xalloc(sizeof(*t));
733 e = xalloc(sizeof(*e));
777 node = xalloc(sizeof(struct node));
1043 ptr = xalloc(sizeof(*ptr));
/freebsd-11-stable/contrib/dialog/
H A Dtextbox.c111 xalloc(size_t size) function
114 assert_ptr(result, "xalloc");
135 buftab = xalloc(size_read + 1);
166 obj->buf = xalloc((size_t) obj->buffer_len + 1);
174 obj->buf = xalloc(size_read + 1);
235 buftab = xalloc((size_t) val + 1);
/freebsd-11-stable/contrib/sendmail/src/
H A Dmain.c480 sysloglabel = xalloc(j);
592 SaveArgv = (char **) xalloc(sizeof(char *) * (argc + 1));
593 CommandLineArgs = xalloc(j);
679 tz = xalloc(tzlen);
1042 new = (QUEUE_CHAR *) xalloc(sizeof(*new));
1050 new = (QUEUE_CHAR *) xalloc(sizeof(*new));
1058 new = (QUEUE_CHAR *) xalloc(sizeof(*new));
1072 new = (QUEUE_CHAR *) xalloc(sizeof(*new));
2720 p_flags = (BITMAP256 *) xalloc(sizeof(*p_flags));
3505 *argv = xalloc(sizeo
[all...]
H A Dmilter.c480 buf = (char *) xalloc(expl);
1243 m = (struct milter *) xalloc(sizeof(*m));
1914 buf = (char *) xalloc(s);
2712 buf = (char *) xalloc(len_t);
3965 buf = (char *) xalloc(s);
4150 buf = (char *) xalloc(s);
4231 buf = (char *) xalloc(s);
H A Dsrvrsmtp.c1648 in = xalloc(strlen(inp) + 1);
1652 out = xalloc(strlen(inp));
1788 out2 = xalloc(len);
2044 in = xalloc(1);
2052 in = xalloc(strlen(q) + 1);
2116 out2 = xalloc(len);
4837 auth_param = xalloc(len);
H A Dmap.c1044 map_p = (struct dns_map *) xalloc(sizeof(*map_p));
1397 new = xalloc(sz);
2849 cdbmp = (struct cdb_make *) xalloc(sizeof(*cdbmp));
2866 cdbp = (struct cdb *) xalloc(sizeof(*cdbp));
4338 lmap = (SM_LDAP_STRUCT *) xalloc(sizeof(*lmap));
5122 LDAPDefaults = (SM_LDAP_STRUCT *) xalloc(sizeof(*LDAPDefaults));
5217 pmap = (PH_MAP_STRUCT *) xalloc(sizeof(*pmap));
5904 np = xalloc(strlen(name) + 2);
7260 # define xnalloc(s) memset(xalloc(s), '\0', s);
7264 regex_t *regex_pattern_buf; /* xalloc i
[all...]
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dquotearg.c29 #include <xalloc.h>
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dios_base.h710 * application calls xalloc in order to obtain an index in the iword and
714 * returned on each invocation. xalloc is guaranteed to return an index
718 xalloc() throw();
729 * The implementation reserves several indices. You should use xalloc to
750 * The implementation reserves several indices. You should use xalloc to
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dios.cpp154 // xalloc
172 ios_base::xalloc() function in class:ios_base

Completed in 165 milliseconds

12