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

/freebsd-10.1-release/lib/libc/gen/
H A Dstringlist.c58 sl->sl_max = _SL_CHUNKSIZE;
59 sl->sl_str = malloc(sl->sl_max * sizeof(char *));
72 if (sl->sl_cur == sl->sl_max - 1) {
73 sl->sl_max += _SL_CHUNKSIZE;
74 sl->sl_str = reallocf(sl->sl_str, sl->sl_max * sizeof(char *));
/freebsd-10.1-release/contrib/bmake/
H A Dstrlist.c53 sl->sl_max = 0;
68 sl->sl_max = 0;
84 if (n >= sl->sl_max) {
87 sl->sl_max = n + 6;
H A Dstrlist.h45 unsigned int sl_max; member in struct:__anon704
/freebsd-10.1-release/include/
H A Dstringlist.h46 size_t sl_max; member in struct:_stringlist
/freebsd-10.1-release/contrib/tnftp/
H A Dtnftp.h178 size_t sl_max; member in struct:_stringlist

Completed in 69 milliseconds