Searched refs:reallocarray (Results 1 - 25 of 112) sorted by relevance

12345

/xsrc/external/mit/libXext/dist/src/
H A Dreallocarray.h34 # define reallocarray(ptr, n, size) xreallocarray((ptr), (size_t)(n), (size_t)(size)) macro
39 reallocarray((ptr), ((n) == 0 ? 1 : (n)), size)
41 # define Xreallocarray(ptr, n, size) reallocarray((ptr), (n), (size))
H A DMakefile.am31 reallocarray.h \
/xsrc/external/mit/libfontenc/dist/src/
H A Dreallocarray.h34 # define reallocarray(ptr, n, size) xreallocarray((ptr), (size_t)(n), (size_t)(size)) macro
39 reallocarray((ptr), ((n) == 0 ? 1 : (n)), size)
41 # define Xreallocarray(ptr, n, size) reallocarray((ptr), (n), (size))
H A DMakefile.am7 reallocarray.h
/xsrc/external/mit/libX11/dist/src/
H A Dreallocarray.h34 # define reallocarray(ptr, n, size) xreallocarray((ptr), (size_t)(n), (size_t)(size)) macro
39 reallocarray((ptr), ((n) == 0 ? 1 : (n)), size)
41 # define Xreallocarray(ptr, n, size) reallocarray((ptr), (n), (size))
/xsrc/external/mit/libXmu/dist/src/
H A DXmuint.h37 # define reallocarray(ptr, n, size) Xmureallocarray((ptr), (n), (size)) macro
40 #define Xmumallocarray(n, size) reallocarray(NULL, (n), (size))
/xsrc/external/mit/libXfont2/dist/src/util/
H A Dreplace.h38 reallocarray(void *optr, size_t nmemb, size_t size);
42 #define mallocarray(n, s) reallocarray(NULL, n, s)
H A Dreallocarray.c1 /* $OpenBSD: reallocarray.c,v 1.2 2014/12/08 03:45:00 bcook Exp $ */
35 reallocarray(void *optr, size_t nmemb, size_t size) function in typeref:typename:void *
H A Dprivate.c88 new = reallocarray (pFont->devPrivates, (n + 1), sizeof (pointer));
93 new = reallocarray (NULL, (n + 1), sizeof (pointer));
H A Dfontnames.c104 nlength = reallocarray(names->length, size, sizeof(int));
105 nnames = reallocarray(names->names, size, sizeof(char *));
/xsrc/external/mit/xorg-server/dist/os/
H A Dreallocarray.c1 /* $OpenBSD: reallocarray.c,v 1.2 2014/12/08 03:45:00 bcook Exp $ */
35 reallocarray(void *optr, size_t nmemb, size_t size) function in typeref:typename:void *
/xsrc/external/mit/libXext/dist/
H A Dconfigure.ac48 AC_REPLACE_FUNCS([reallocarray])
/xsrc/external/mit/libXmu/dist/
H A Dconfigure.ac37 AC_REPLACE_FUNCS([reallocarray])
/xsrc/external/mit/makedepend/dist/
H A Dconfigure.ac28 AC_CHECK_FUNCS([rename fchmod reallocarray])
H A Ddef.h64 #define reallocarray(ptr, num, size) realloc(ptr, (num) * (size)) macro
66 #define mallocarray(num, size) reallocarray(NULL, num, size)
H A Dinclude.c225 ip->i_list = reallocarray(ip->i_list, ip->i_listlen,
227 ip->i_merged = reallocarray(ip->i_merged, ip->i_listlen,
/xsrc/external/mit/libXfont2/dist/src/fontfile/
H A Drenderers.c84 new = reallocarray (renderers.renderers, i + 1, sizeof(*new));
H A Dbitsource.c53 new = reallocarray (FontFileBitmapSources.fpe, newsize, sizeof *new);
/xsrc/external/mit/fslsfonts/dist/
H A Dconfigure.ac46 AC_SEARCH_LIBS([reallocarray], [bsd])
49 AC_CHECK_FUNCS([reallocarray])
/xsrc/external/mit/xlsfonts/dist/
H A Dconfigure.ac45 AC_SEARCH_LIBS([reallocarray], [bsd])
48 AC_CHECK_FUNCS([reallocarray])
/xsrc/external/mit/libFS/dist/src/
H A DFSlibos.h256 # define reallocarray(ptr, n, size) \ macro
272 reallocarray((ptr), ((n) == 0 ? 1 : (n)), size)
279 # define FSreallocarray(ptr, n, size) reallocarray((ptr), (n), (size))
/xsrc/external/mit/xorg-server/dist/randr/
H A Drrinfo.c58 modes = reallocarray(output->modes,
269 pNew = reallocarray(pScrPriv->pSizes,
292 pNew = reallocarray(pSize->pRates, pSize->nRates + 1, sizeof(RRScreenRate));
/xsrc/external/mit/xorg-server/dist/render/
H A Dfilter.c70 names = reallocarray(filterNames, nfilterNames + 1, sizeof(char *));
148 reallocarray(ps->filters, ps->nfilters + 1, sizeof(PictFilterRec));
180 aliases = reallocarray(ps->filterAliases,
/xsrc/external/mit/xorg-server/dist/xkb/
H A DXKBAlloc.c59 compat->sym_interpret = reallocarray(compat->sym_interpret,
162 names->key_aliases = reallocarray(names->key_aliases,
187 names->radio_groups = reallocarray(names->radio_groups,
/xsrc/external/mit/xorg-server/dist/glx/
H A Dsingle2swap.c66 cx->feedbackBuf = reallocarray(cx->feedbackBuf,
100 cx->selectBuf = reallocarray(cx->selectBuf,

Completed in 50 milliseconds

12345