Lines Matching refs:next
109 const char *next; /* next character in RE */ member
182 #define PEEK() (*p->next)
183 #define PEEK2() (*(p->next+1))
184 #define MORE() (p->next < p->end)
185 #define MORE2() (p->next+1 < p->end)
190 #define NEXT() (p->next++)
191 #define NEXT2() (p->next += 2)
192 #define NEXTn(n) (p->next += (n))
193 #define GETNEXT() (*p->next++)
278 p->next = pattern; in regcomp()
279 p->end = p->next + len; in regcomp()
774 if (p->next + 5 < p->end && strncmp(p->next, "[:<:]]", in p_bracket()
780 if (p->next + 5 < p->end && strncmp(p->next, "[:>:]]", in p_bracket()
926 sp = p->next; in p_b_cclass()
930 len = p->next - sp; in p_b_cclass()
1004 sp = p->next; in p_b_coll_elem()
1012 len = p->next - sp; in p_b_coll_elem()
1056 oldnext = p->next; in bothcases()
1060 p->next = bracket; in bothcases()
1066 assert(p->next == bracket+2); in bothcases()
1067 p->next = oldnext; in bothcases()
1114 oldnext = p->next; in nonnewline()
1117 p->next = bracket; in nonnewline()
1124 assert(p->next == bracket+3); in nonnewline()
1125 p->next = oldnext; in nonnewline()
1223 p->next = nuls; /* try to bring things to a halt */ in seterr()