Lines Matching refs:rx_node
29 static struct rx_node *_or_term(struct parse_sp *ps);
204 static struct rx_node *_node(struct dm_pool *mem, int type, in _node()
205 struct rx_node *l, struct rx_node *r) in _node()
207 struct rx_node *n = dm_pool_zalloc(mem, sizeof(*n)); in _node()
223 static struct rx_node *_term(struct parse_sp *ps) in _term()
225 struct rx_node *n; in _term()
255 static struct rx_node *_closure_term(struct parse_sp *ps) in _closure_term()
257 struct rx_node *l, *n; in _closure_term()
292 static struct rx_node *_cat_term(struct parse_sp *ps) in _cat_term()
294 struct rx_node *l, *r, *n; in _cat_term()
311 static struct rx_node *_or_term(struct parse_sp *ps) in _or_term()
313 struct rx_node *l, *r, *n; in _or_term()
334 struct rx_node *rx_parse_tok(struct dm_pool *mem, in rx_parse_tok()
337 struct rx_node *r; in rx_parse_tok()
359 struct rx_node *rx_parse_str(struct dm_pool *mem, const char *str) in rx_parse_str()