Lines Matching defs:overall
211 XCharStruct overall;
216 overall = font->max_bounds;
217 overall.lbearing = font->min_bounds.lbearing;
221 ink->x = overall.lbearing;
222 ink->y = -(overall.ascent);
223 ink->width = overall.rbearing - overall.lbearing;
224 ink->height = overall.ascent + overall.descent;
228 logical->width = overall.width;
635 XCharStruct overall;
638 &logical_ascent, &logical_descent, &overall);
641 overall_ink->x = overall.lbearing;
642 overall_ink->y = -(overall.ascent);
643 overall_ink->width = overall.rbearing - overall.lbearing;
644 overall_ink->height = overall.ascent + overall.descent;
650 overall_logical->width = overall.width;
654 return overall.width;
687 XCharStruct *def, *cs, overall;
693 bzero((char *) &overall, sizeof(XCharStruct));
704 ink_buf->x = overall.width + cs->lbearing;
710 logical_buf->x = overall.width;
717 overall = *cs;
720 overall.ascent = max(overall.ascent, cs->ascent);
721 overall.descent = max(overall.descent, cs->descent);
722 overall.lbearing = min(overall.lbearing, overall.width +
724 overall.rbearing = max(overall.rbearing, overall.width +
726 overall.width += cs->width;
732 overall_ink->x = overall.lbearing;
733 overall_ink->y = -(overall.ascent);
734 overall_ink->width = overall.rbearing - overall.lbearing;
735 overall_ink->height = overall.ascent + overall.descent;
741 overall_logical->width = overall.width;