Lines Matching refs:b
48 register char* b; in fmtquote() local
63 b = buf = fmtbuf(c); in fmtquote()
78 while (*b = *qb++) in fmtquote()
79 b++; in fmtquote()
83 f = b; in fmtquote()
90 *b++ = *s++; in fmtquote()
98 *b++ = '\\'; in fmtquote()
130 *b++ = '0' + ((c >> 6) & 07); in fmtquote()
131 *b++ = '0' + ((c >> 3) & 07); in fmtquote()
135 b--; in fmtquote()
142 *b++ = c; in fmtquote()
151 *b++ = '\''; in fmtquote()
152 *b++ = '\\'; in fmtquote()
153 *b++ = '\''; in fmtquote()
159 *b++ = '\\'; in fmtquote()
169 *b++ = '\''; in fmtquote()
170 *b++ = c; in fmtquote()
171 *b++ = *s++; in fmtquote()
175 *b++ = '$'; in fmtquote()
182 *b++ = c; in fmtquote()
187 *b++ = '\\'; in fmtquote()
191 …MT_SHELL) || shell) && (strchr("\";~&|()<>[]*?", c) || c == '#' && (b == f || isspace(*(b - 1)))))) in fmtquote()
193 *b++ = c; in fmtquote()
201 while (*b = *qe++) in fmtquote()
202 b++; in fmtquote()
204 *b = 0; in fmtquote()