Lines Matching refs:bufnext
156 Char *bufnext, *bufend, patbuf[MAXPATHLEN], prot; in freebsd11_glob() local
178 bufnext = patbuf; in freebsd11_glob()
179 bufend = bufnext + MAXPATHLEN - 1; in freebsd11_glob()
183 while (bufnext <= bufend) { in freebsd11_glob()
191 *bufnext++ = wc; in freebsd11_glob()
197 while (bufnext <= bufend) { in freebsd11_glob()
200 *bufnext++ = QUOTE; in freebsd11_glob()
213 *bufnext++ = wc | prot; in freebsd11_glob()
219 *bufnext = EOS; in freebsd11_glob()
500 Char *bufnext, c, patbuf[MAXPATHLEN]; in glob0() local
508 bufnext = patbuf; in glob0()
519 *bufnext++ = LBRACKET; in glob0()
524 *bufnext++ = M_SET; in glob0()
526 *bufnext++ = M_NOT; in glob0()
529 *bufnext++ = CHAR(c); in glob0()
532 *bufnext++ = M_RNG; in glob0()
533 *bufnext++ = CHAR(c); in glob0()
538 *bufnext++ = M_END; in glob0()
542 *bufnext++ = M_ONE; in glob0()
549 if (bufnext == patbuf || bufnext[-1] != M_ALL) in glob0()
550 *bufnext++ = M_ALL; in glob0()
553 *bufnext++ = CHAR(c); in glob0()
557 *bufnext = EOS; in glob0()