Lines Matching refs:eqn_box
269 static struct eqn_box *eqn_box_alloc(struct eqn_node *, struct eqn_box *);
270 static void eqn_box_free(struct eqn_box *);
271 static struct eqn_box *eqn_box_makebinary(struct eqn_node *,
272 enum eqn_post, struct eqn_box *);
279 static enum rofferr eqn_parse(struct eqn_node *, struct eqn_box *);
523 eqn_box_free(struct eqn_box *bp) in eqn_box_free()
542 static struct eqn_box *
543 eqn_box_alloc(struct eqn_node *ep, struct eqn_box *parent) in eqn_box_alloc()
545 struct eqn_box *bp; in eqn_box_alloc()
547 bp = mandoc_calloc(1, sizeof(struct eqn_box)); in eqn_box_alloc()
569 static struct eqn_box *
571 enum eqn_post pos, struct eqn_box *parent) in eqn_box_makebinary()
573 struct eqn_box *b, *newb; in eqn_box_makebinary()
696 eqn_parse(struct eqn_node *ep, struct eqn_box *parent) in eqn_parse()
699 struct eqn_box *cur; in eqn_parse()
1105 ep->eqn.root = mandoc_calloc(1, sizeof(struct eqn_box)); in eqn_end()