Home
last modified time | relevance | path

Searched refs:eqn_box (Results 1 – 5 of 5) sorted by relevance

/titanic_41/usr/src/cmd/mandoc/
H A Deqn_term.c38 static void eqn_box(struct termp *, const struct eqn_box *);
45 eqn_box(p, ep->root); in term_eqn()
51 eqn_box(struct termp *p, const struct eqn_box *bp) in eqn_box() function
65 eqn_box(p, bp->first); in eqn_box()
75 eqn_box(p, bp->next); in eqn_box()
H A Deqn_html.c39 static void eqn_box(struct html *, const struct eqn_box *);
51 eqn_box(p, ep->root); in print_eqn()
58 eqn_box(struct html *p, const struct eqn_box *bp) in eqn_box() function
72 eqn_box(p, bp->first); in eqn_box()
80 eqn_box(p, bp->next); in eqn_box()
H A Deqn.c141 static enum eqn_rest eqn_box(struct eqn_node *, struct eqn_box *);
142 static struct eqn_box *eqn_box_alloc(struct eqn_node *,
143 struct eqn_box *);
144 static void eqn_box_free(struct eqn_box *);
154 static enum eqn_rest eqn_eqn(struct eqn_node *, struct eqn_box *);
155 static enum eqn_rest eqn_list(struct eqn_node *, struct eqn_box *);
156 static enum eqn_rest eqn_matrix(struct eqn_node *, struct eqn_box *);
357 struct eqn_box *root; in eqn_end()
363 ep->eqn.root = mandoc_calloc(1, sizeof(struct eqn_box)); in eqn_end()
380 eqn_eqn(struct eqn_node *ep, struct eqn_box *last) in eqn_eqn()
[all …]
H A Dmandoc.h337 struct eqn_box { struct
341 struct eqn_box *first; /* first child node */ argument
342 struct eqn_box *last; /* last child node */ argument
343 struct eqn_box *next; /* node sibling */ argument
344 struct eqn_box *parent; /* node sibling */ argument
360 struct eqn_box *root; /* root mathematical expression */ argument
H A Dtree.c33 static void print_box(const struct eqn_box *, int);
265 print_box(const struct eqn_box *ep, int indent) in print_box()