Symbol: expbuf
usr/src/cmd/csh/printf.c
139
char expbuf[MAXESIZ + 1];
usr/src/cmd/csh/printf.c
472
suffix = &expbuf[MAXESIZ];
usr/src/cmd/csh/printf.c
486
while (suffix > &expbuf[MAXESIZ - 2]) {
usr/src/cmd/csplit/csplit.c
481
to_line(findline(expbuf, offset));
usr/src/cmd/csplit/csplit.c
533
expbuf = compile(string, (char *)0, (char *)0);
usr/src/cmd/csplit/csplit.c
536
to_line(findline(expbuf, offset));
usr/src/cmd/csplit/csplit.c
61
char *expbuf;
usr/src/cmd/ed/ed.c
192
static char *expbuf;
usr/src/cmd/ed/ed.c
2213
if (expbuf)
usr/src/cmd/ed/ed.c
2214
free(expbuf);
usr/src/cmd/ed/ed.c
2215
expbuf = compile(genbuf, (char *)0, (char *)0);
usr/src/cmd/ed/ed.c
2316
return (step(p1, expbuf));
usr/src/cmd/expr/compile.c
102
compile(const char *instr, char *expbuf, char *endbuf)
usr/src/cmd/expr/compile.c
104
return (dhl_compile(instr, expbuf, endbuf));
usr/src/cmd/expr/compile.c
108
step(const char *instr, const char *expbuf)
usr/src/cmd/expr/compile.c
110
return (dhl_step(instr, expbuf));
usr/src/cmd/expr/compile.c
114
advance(const char *instr, const char *expbuf)
usr/src/cmd/expr/compile.c
116
return (dhl_advance(instr, expbuf));
usr/src/cmd/expr/compile.c
141
char *expbuf, /* where the compiled RE gets placed */
usr/src/cmd/expr/compile.c
157
if (expbuf == NULL) {
usr/src/cmd/expr/compile.c
158
if ((expbuf = malloc(regexc_size)) == NULL) {
usr/src/cmd/expr/compile.c
164
endbuf = expbuf + regexc_size;
usr/src/cmd/expr/compile.c
166
if (expbuf + regexc_size > endbuf) {
usr/src/cmd/expr/compile.c
170
memcpy(&reg_comp, expbuf, regexc_size);
usr/src/cmd/expr/compile.c
232
(void) memcpy(expbuf, (char *)&reg_comp, regexc_size);
usr/src/cmd/expr/compile.c
243
free(expbuf);
usr/src/cmd/expr/compile.c
249
return (expbuf);
usr/src/cmd/expr/compile.c
251
return (expbuf + regexc_size);
usr/src/cmd/expr/expr.c
391
static char *expbuf;
usr/src/cmd/expr/expr.c
406
if (regerrno != 41 || expbuf == NULL)
usr/src/cmd/expr/expr.c
409
if (expbuf)
usr/src/cmd/expr/expr.c
410
free(expbuf);
usr/src/cmd/expr/expr.c
411
expbuf = nexpbuf;
usr/src/cmd/expr/expr.c
413
if (advance(s, expbuf)) {
usr/src/cmd/mail/mail.h
277
extern char *altcompile(const char *instring, char *expbuf, char *endbuf);
usr/src/cmd/pg/pg.c
1232
static char *expbuf;
usr/src/cmd/pg/pg.c
1239
if (regerrno != 41 || expbuf == NULL)
usr/src/cmd/pg/pg.c
1242
if (expbuf)
usr/src/cmd/pg/pg.c
1243
free(expbuf);
usr/src/cmd/pg/pg.c
1244
expbuf = nexpbuf;
usr/src/cmd/pg/pg.c
1260
if (step(Line, expbuf))
usr/src/lib/krb5/kadm5/srv/svr_iters.c
154
match = (step(name, data->expbuf) != 0);
usr/src/lib/krb5/kadm5/srv/svr_iters.c
226
((data.expbuf = compile(regexp, NULL, NULL)) == NULL)
usr/src/lib/krb5/kadm5/srv/svr_iters.c
61
char *expbuf;
usr/src/lib/libadm/common/ckstr.c
101
valid = __step(input, expbuf);
usr/src/lib/libadm/common/ckstr.c
88
char expbuf[ESIZE];
usr/src/lib/libadm/common/ckstr.c
99
if (!__compile(regexp[i], expbuf, &expbuf[ESIZE], '\0'))
usr/src/lib/libc/port/gen/regexpr.c
155
ep = expbuf;
usr/src/lib/libc/port/gen/regexpr.c
157
#define comerr(msg) {expbuf[0] = 0; return (msg); }
usr/src/lib/libc/port/gen/regexpr.c
171
if (ep >= &expbuf[ESIZE])
usr/src/lib/libc/port/gen/regexpr.c
222
if (ep >= &expbuf[ESIZE])
usr/src/lib/libc/port/gen/regexpr.c
228
if (ep >= &expbuf[ESIZE])
usr/src/lib/libc/port/gen/regexpr.c
280
p2 = expbuf;
usr/src/lib/libc/port/print/doprnt.c
1295
suffix = &expbuf[MAXESIZ];
usr/src/lib/libc/port/print/doprnt.c
1316
suffixlength = &expbuf[MAXESIZ] - suffix;
usr/src/lib/libc/port/print/doprnt.c
1393
*(suffix = &expbuf[MAXESIZ]) = '\0';
usr/src/lib/libc/port/print/doprnt.c
1404
while (suffix > &expbuf[MAXESIZ - 2])
usr/src/lib/libc/port/print/doprnt.c
1414
otherlength += (suffixlength = &expbuf[MAXESIZ] \
usr/src/lib/libc/port/print/doprnt.c
491
CHAR_T expbuf[MAXESIZ + 1];
usr/src/lib/libgen/common/reg_compile.c
156
char *expbuf = ep;
usr/src/lib/libgen/common/reg_compile.c
184
expbuf = ep;
usr/src/lib/libgen/common/reg_compile.c
432
free(expbuf);
usr/src/lib/libgen/common/reg_compile.c
435
reglength = (int)(ep - expbuf);
usr/src/lib/libgen/common/reg_compile.c
437
return (expbuf);
usr/src/lib/libgen/inc/regexpr.h
58
extern int step(const char *string, const char *expbuf);
usr/src/lib/libgen/inc/regexpr.h
59
extern int advance(const char *string, const char *expbuf);
usr/src/lib/libgen/inc/regexpr.h
60
extern char *compile(const char *instring, char *expbuf, char *endbuf);
usr/src/ucbcmd/expr/expr.y
296
static char expbuf[ESIZE];
usr/src/ucbcmd/expr/expr.y
301
compile(p, expbuf, &expbuf[ESIZE], 0);
usr/src/ucbcmd/expr/expr.y
304
if(advance(s, expbuf)) {
usr/src/ucbcmd/sed/sed0.c
697
char *address(expbuf)
usr/src/ucbcmd/sed/sed0.c
698
char *expbuf;
usr/src/ucbcmd/sed/sed0.c
704
if (expbuf > &respace[RESIZE-2])
usr/src/ucbcmd/sed/sed0.c
707
*expbuf++ = CEND;
usr/src/ucbcmd/sed/sed0.c
708
*expbuf++ = CCEOF;
usr/src/ucbcmd/sed/sed0.c
709
return(expbuf);
usr/src/ucbcmd/sed/sed0.c
715
return(comple((char *) 0, expbuf, &respace[RESIZE-1], sseof));
usr/src/ucbcmd/sed/sed0.c
725
if (expbuf > &respace[RESIZE-3])
usr/src/ucbcmd/sed/sed0.c
727
*expbuf++ = CLNUM;
usr/src/ucbcmd/sed/sed0.c
728
*expbuf++ = nlno;
usr/src/ucbcmd/sed/sed0.c
732
*expbuf++ = CCEOF;
usr/src/ucbcmd/sed/sed0.c
734
return(expbuf);
usr/src/ucbcmd/sed/sed0.c
816
char *ycomp(expbuf)
usr/src/ucbcmd/sed/sed0.c
817
char *expbuf;
usr/src/ucbcmd/sed/sed0.c
824
ep = expbuf;
usr/src/ucbcmd/sed/sed1.c
227
match(char *expbuf, int gf)
usr/src/ucbcmd/sed/sed1.c
232
if(*expbuf) return(0);
usr/src/ucbcmd/sed/sed1.c
239
circf = *expbuf++;
usr/src/ucbcmd/sed/sed1.c
240
return(step(p1, expbuf));
usr/src/ucbcmd/sed/sed1.c
96
static int match(char *expbuf, int gf);
usr/src/ucblib/libucb/port/gen/regex.c
161
ep = expbuf;
usr/src/ucblib/libucb/port/gen/regex.c
163
#define comerr(msg) {expbuf[0] = 0; return (msg); }
usr/src/ucblib/libucb/port/gen/regex.c
177
if (ep >= &expbuf[ESIZE])
usr/src/ucblib/libucb/port/gen/regex.c
227
if (ep >= &expbuf[ESIZE])
usr/src/ucblib/libucb/port/gen/regex.c
233
if (ep >= &expbuf[ESIZE])
usr/src/ucblib/libucb/port/gen/regex.c
285
p2 = expbuf;
usr/src/ucblib/libucb/port/stdio/doprnt.c
199
char expbuf[MAXESIZ + 1];
usr/src/ucblib/libucb/port/stdio/doprnt.c
754
*(suffix = &expbuf[MAXESIZ]) = '\0';
usr/src/ucblib/libucb/port/stdio/doprnt.c
765
while (suffix > &expbuf[MAXESIZ - 2])
usr/src/ucblib/libucb/port/stdio/doprnt.c
776
(int)(&expbuf[MAXESIZ] - suffix));