Lines Matching defs:overall
55 register XCharStruct *overall) /* RETURN character information */
76 * assign the values to overall; otherwise, compute * the new values.
93 *overall = *cs;
95 overall->ascent = max (overall->ascent, cs->ascent);
96 overall->descent = max (overall->descent, cs->descent);
97 overall->lbearing = min (overall->lbearing,
98 overall->width + cs->lbearing);
99 overall->rbearing = max (overall->rbearing,
100 overall->width + cs->rbearing);
101 overall->width += cs->width;
110 overall->width = overall->ascent = overall->descent =
111 overall->lbearing = overall->rbearing = 0;