Lines Matching refs:next
56 char *next; /* next character in RE */ member
113 #define PEEK() (*p->next)
114 #define PEEK2() (*(p->next+1))
115 #define MORE() (p->next < p->end)
116 #define MORE2() (p->next+1 < p->end)
121 #define NEXT() (p->next++)
122 #define NEXT2() (p->next += 2)
123 #define NEXTn(n) (p->next += (n))
124 #define GETNEXT() (*p->next++)
188 p->next = (char *)pattern; /* convenience; we do not modify it */ in regcomp()
189 p->end = p->next + len; in regcomp()
631 if (p->next + 5 < p->end && strncmp(p->next, "[:<:]]", 6) == 0) { in p_bracket()
636 if (p->next + 5 < p->end && strncmp(p->next, "[:>:]]", 6) == 0) { in p_bracket()
769 char *sp = p->next; in p_b_cclass()
777 len = p->next - sp; in p_b_cclass()
833 char *sp = p->next; in p_b_coll_elem()
843 len = p->next - sp; in p_b_coll_elem()
877 char *oldnext = p->next; in bothcases()
883 p->next = bracket; in bothcases()
889 assert(p->next == bracket+2); in bothcases()
890 p->next = oldnext; in bothcases()
919 char *oldnext = p->next; in nonnewline()
923 p->next = bracket; in nonnewline()
930 assert(p->next == bracket+3); in nonnewline()
931 p->next = oldnext; in nonnewline()
1013 p->next = nuls; /* try to bring things to a halt */ in seterr()