Lines Matching defs:overall
147 XCharStruct overall;
150 &logical_ascent, &logical_descent, &overall);
153 overall_ink->x = overall.lbearing;
154 overall_ink->y = -(overall.ascent);
155 overall_ink->width = overall.rbearing - overall.lbearing;
156 overall_ink->height = overall.ascent + overall.descent;
162 overall_logical->width = overall.width;
166 return overall.width;
225 XCharStruct *def, *cs, overall;
231 bzero((char *) &overall, sizeof(XCharStruct));
242 ink_buf->x = overall.width + cs->lbearing;
248 logical_buf->x = overall.width;
255 overall = *cs;
258 overall.ascent = max(overall.ascent, cs->ascent);
259 overall.descent = max(overall.descent, cs->descent);
260 overall.lbearing = min(overall.lbearing, overall.width +
262 overall.rbearing = max(overall.rbearing, overall.width +
264 overall.width += cs->width;
271 overall_ink->x = overall.lbearing;
272 overall_ink->y = -(overall.ascent);
273 overall_ink->width = overall.rbearing - overall.lbearing;
274 overall_ink->height = overall.ascent + overall.descent;
280 overall_logical->width = overall.width;