Lines Matching refs:overall
48 XCharStruct overall, tmp_overall;
56 bzero((char *) &overall, sizeof(XCharStruct));
78 if (first) { /* initialize overall */
79 overall = tmp_overall;
84 overall.lbearing = min(overall.lbearing,
85 overall.width + tmp_overall.lbearing);
86 overall.rbearing = max(overall.rbearing,
87 overall.width + tmp_overall.rbearing);
88 overall.ascent = max(overall.ascent, tmp_overall.ascent);
89 overall.descent = max(overall.descent, tmp_overall.descent);
90 overall.width += tmp_overall.width;
97 overall_ink->x = overall.lbearing;
98 overall_ink->y = -(overall.ascent);
99 overall_ink->width = overall.rbearing - overall.lbearing;
100 overall_ink->height = overall.ascent + overall.descent;
106 overall_logical->width = overall.width;
110 return overall.width;