Searched refs:eqn_box (Results 1 – 5 of 5) sorted by relevance
/titanic_50/usr/src/cmd/mandoc/ |
H A D | eqn_term.c | 39 static void eqn_box(struct termp *, const struct eqn_box *); 46 eqn_box(p, ep->root); in term_eqn() 51 eqn_box(struct termp *p, const struct eqn_box *bp) in eqn_box() function 53 const struct eqn_box *child; in eqn_box() 72 eqn_box(p, bp->first); in eqn_box() 75 eqn_box(p, child); in eqn_box() 83 eqn_box(p, child); in eqn_box() 91 eqn_box(p, child); in eqn_box() 99 eqn_box(p, in eqn_box()
|
H A D | eqn_html.c | 31 eqn_box(struct html *p, const struct eqn_box *bp) in eqn_box() function 35 const struct eqn_box *child, *parent; in eqn_box() 51 eqn_box(p, bp->first); in eqn_box() 81 eqn_box(p, child->first); in eqn_box() 158 eqn_box(p, bp->first); in eqn_box() 175 eqn_box(p, bp->next); in eqn_box() 188 eqn_box(p, ep->root); in print_eqn()
|
H A D | mandoc.h | 349 struct eqn_box { struct 353 struct eqn_box *first; /* first child node */ argument 354 struct eqn_box *last; /* last child node */ argument 355 struct eqn_box *next; /* node sibling */ argument 356 struct eqn_box *prev; /* node sibling */ argument 357 struct eqn_box *parent; /* node sibling */ argument 376 struct eqn_box *root; /* root mathematical expression */ argument
|
H A D | eqn.c | 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() [all …]
|
H A D | tree.c | 33 static void print_box(const struct eqn_box *, int); 265 print_box(const struct eqn_box *ep, int indent) in print_box()
|