Lines Matching defs:overall
81 register XCharStruct *overall) /* RETURN character information */
103 * assign the values to overall; otherwise, compute * the new values.
118 *overall = *cs;
120 overall->ascent = max (overall->ascent, cs->ascent);
121 overall->descent = max (overall->descent, cs->descent);
122 overall->lbearing = min (overall->lbearing,
123 overall->width + cs->lbearing);
124 overall->rbearing = max (overall->rbearing,
125 overall->width + cs->rbearing);
126 overall->width += cs->width;
135 overall->width = overall->ascent = overall->descent =
136 overall->lbearing = overall->rbearing = 0;