Searched refs:sl_max (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/mandoc/
H A Dcompat_stringlist.h37 size_t sl_max; member in struct:_stringlist
H A Dcompat_stringlist.c58 sl->sl_max = _SL_CHUNKSIZE;
59 sl->sl_str = reallocarray(NULL, sl->sl_max, sizeof(char *));
72 if (sl->sl_cur == sl->sl_max - 1) {
73 sl->sl_max += _SL_CHUNKSIZE;
75 sl->sl_max, sizeof(char *));
/freebsd-13-stable/lib/libc/gen/
H A Dstringlist.c56 sl->sl_max = _SL_CHUNKSIZE;
57 sl->sl_str = malloc(sl->sl_max * sizeof(char *));
70 if (sl->sl_cur == sl->sl_max - 1) {
71 sl->sl_max += _SL_CHUNKSIZE;
72 sl->sl_str = reallocf(sl->sl_str, sl->sl_max * sizeof(char *));
/freebsd-13-stable/include/
H A Dstringlist.h43 size_t sl_max; member in struct:_stringlist
/freebsd-13-stable/contrib/tnftp/
H A Dtnftp.h178 size_t sl_max; member in struct:_stringlist

Completed in 136 milliseconds