Symbol: re_re
usr/src/tools/cscope-fast/cgrep.c
1039
d3(re_re *r, PATTERN *pat)
usr/src/tools/cscope-fast/cgrep.c
1086
d2(re_re *r, PATTERN *pat)
usr/src/tools/cscope-fast/cgrep.c
1101
d1(re_re *r, PATTERN *pat)
usr/src/tools/cscope-fast/cgrep.c
1115
d0(re_re *r, PATTERN *pat)
usr/src/tools/cscope-fast/cgrep.c
1131
eall(re_re *r, PATTERN *pat)
usr/src/tools/cscope-fast/cgrep.c
1283
re_recw(re_re *r, uchar_t *map)
usr/src/tools/cscope-fast/cgrep.c
148
re_re *re_ptr;
usr/src/tools/cscope-fast/cgrep.c
247
static State *startstate(re_re *r);
usr/src/tools/cscope-fast/cgrep.c
248
static State *stateof(re_re *r, Positionset *ps);
usr/src/tools/cscope-fast/cgrep.c
249
static State *nextstate(re_re *r, State *s, int a);
usr/src/tools/cscope-fast/cgrep.c
250
static State *addstate(re_re *r, Positionset *ps, int cnt);
usr/src/tools/cscope-fast/cgrep.c
253
static void eptr(re_re *r, Expr *e);
usr/src/tools/cscope-fast/cgrep.c
254
static void efollow(re_re *r, Positionset *fpos, Expr *e);
usr/src/tools/cscope-fast/cgrep.c
256
static void followstate(re_re *r, State *s, int a, Positionset *fpos);
usr/src/tools/cscope-fast/cgrep.c
257
static Expr *eall(re_re *r, PATTERN *pat);
usr/src/tools/cscope-fast/cgrep.c
258
static Expr *d0(re_re *r, PATTERN *pat);
usr/src/tools/cscope-fast/cgrep.c
259
static Expr *d1(re_re *r, PATTERN *pat);
usr/src/tools/cscope-fast/cgrep.c
260
static Expr *d2(re_re *r, PATTERN *pat);
usr/src/tools/cscope-fast/cgrep.c
261
static Expr *d3(re_re *r, PATTERN *pat);
usr/src/tools/cscope-fast/cgrep.c
263
static void lex(re_re *r, PATTERN *pat);
usr/src/tools/cscope-fast/cgrep.c
277
static int getstate(re_re *r, Positionset *ps);
usr/src/tools/cscope-fast/cgrep.c
278
static void savestate(re_re *r);
usr/src/tools/cscope-fast/cgrep.c
279
static void stateinit(re_re *r);
usr/src/tools/cscope-fast/cgrep.c
282
static re_cw *re_recw(re_re *r, uchar_t *map);
usr/src/tools/cscope-fast/cgrep.c
283
static re_re *egprep(PATTERN *pat);
usr/src/tools/cscope-fast/cgrep.c
286
static void eginit(re_re *r);
usr/src/tools/cscope-fast/cgrep.c
447
eginit(re_re *r)
usr/src/tools/cscope-fast/cgrep.c
471
eptr(re_re *r, Expr *e)
usr/src/tools/cscope-fast/cgrep.c
486
re_re *r = pat->re_ptr;
usr/src/tools/cscope-fast/cgrep.c
612
efollow(re_re *r, Positionset *fpos, Expr *e)
usr/src/tools/cscope-fast/cgrep.c
636
addstate(re_re *r, Positionset *ps, int cnt)
usr/src/tools/cscope-fast/cgrep.c
673
nextstate(re_re *r, State *s, int a)
usr/src/tools/cscope-fast/cgrep.c
704
followstate(re_re *r, State *s, int a, Positionset *fpos)
usr/src/tools/cscope-fast/cgrep.c
831
stateinit(re_re *r)
usr/src/tools/cscope-fast/cgrep.c
844
clrstates(re_re *r)
usr/src/tools/cscope-fast/cgrep.c
852
savestate(re_re *r)
usr/src/tools/cscope-fast/cgrep.c
858
startstate(re_re *r)
usr/src/tools/cscope-fast/cgrep.c
864
getstate(re_re *r, Positionset *ps)
usr/src/tools/cscope-fast/cgrep.c
877
stateof(re_re *r, Positionset *ps)
usr/src/tools/cscope-fast/cgrep.c
896
static re_re *
usr/src/tools/cscope-fast/cgrep.c
899
re_re *r;
usr/src/tools/cscope-fast/cgrep.c
901
r = (re_re *)egmalloc(sizeof (re_re));
usr/src/tools/cscope-fast/cgrep.c
902
(void) memset((char *)r, 0, sizeof (re_re));
usr/src/tools/cscope-fast/cgrep.c
942
lex(re_re *r, PATTERN *pat)