Searched defs:MYBUFSIZE (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/oamuser/user/
H A Dgroups.c46 #define MYBUFSIZE (LINE_MAX) macro
47 /* Corresponds to MYBUFSIZE in grpck.c, BUFCONST in nss_dbdefs.c */
101 bufsize = MYBUFSIZE;
110 * buffer size, which is initially MYBUFSIZE but when a line
111 * greater than MYBUFSIZE is encountered then bufsize gets increased
112 * by MYBUFSIZE.
115 * gstr_off = g_string + MYBUFSIZE * (n), where n >= 0.
124 new_g_string = realloc(g_string, (bufsize + MYBUFSIZE));
132 bufsize += MYBUFSIZE;
/illumos-gate/usr/src/cmd/grpck/
H A Dgrpck.c62 #define MYBUFSIZE (LINE_MAX) /* max line length including newline and null */ macro
154 bufsize = MYBUFSIZE;
166 tmpbuf = realloc(buf, (bufsize + MYBUFSIZE));
171 bufsize += MYBUFSIZE;

Completed in 55 milliseconds