Lines Matching refs:GlhLineSeg
65 typedef struct GlhLineSeg GlhLineSeg; typedef
66 struct GlhLineSeg { struct
67 GlhLineSeg *next; /* The next sub-string of the history line */ argument
93 GlhLineSeg *head; /* The list of sub-strings which make up a line */
172 GlhLineSeg *buffer; /* An array of sub-line nodes to be partitioned */
175 GlhLineSeg *unused; /* The list of free nodes in buffer[] */
220 GlhLineSeg *seg; /* The line segment that the next character will */
299 glh->buffer = (GlhLineSeg *) malloc(sizeof(GlhLineSeg) * glh->nbuff); in _new_GlHistory()
310 GlhLineSeg *seg = glh->unused + i; in _new_GlHistory()
1021 GlhLineSeg *seg; /* One segment of a line being saved */ in _glh_save_history()
1463 GlhLineSeg *seg; /* One segment of a line being displayed */ in _glh_show_history()
1657 glh->buffer = (GlhLineSeg *) malloc(sizeof(GlhLineSeg) * nbuff); in _glh_resize_history()
1669 GlhLineSeg *seg = glh->unused + i; in _glh_resize_history()
1689 GlhLineSeg *buffer; /* The resized buffer */ in _glh_resize_history()
1700 buffer = (GlhLineSeg *) malloc(nbuff * sizeof(GlhLineSeg)); in _glh_resize_history()
1713 GlhLineSeg *seg = hnode->head; in _glh_resize_history()
1838 GlhLineSeg *seg = glh->unused + i; in _glh_clear_history()
2187 GlhLineSeg *seg; /* A line segment */ in _glh_acquire_copy()
2290 GlhLineSeg *tail; /* The last node in the list of line segments */ in _glh_discard_copy()
2385 GlhLineSeg *seg; /* A node in the list of line segments */ in _glh_is_line()
2469 GlhLineSeg *seg; /* A node in the list of line segments */ in _glh_return_line()