Lines Matching defs:overall
318 XCharStruct *overall,
323 overall->lbearing = min(overall->lbearing, font->min_bounds.lbearing);
324 overall->rbearing = max(overall->rbearing, font->max_bounds.rbearing);
325 overall->ascent = max(overall->ascent, font->max_bounds.ascent);
326 overall->descent = max(overall->descent, font->max_bounds.descent);
327 overall->width = max(overall->width, font->max_bounds.width);
341 XCharStruct overall;
347 overall = font->max_bounds;
348 overall.lbearing = font->min_bounds.lbearing;
356 check_fontset_extents(&overall, &logical_ascent, &logical_descent,
373 check_fontset_extents(&overall, &logical_ascent,
385 check_fontset_extents(&overall, &logical_ascent,
396 ink->x = overall.lbearing;
397 ink->y = -(overall.ascent);
398 ink->width = overall.rbearing - overall.lbearing;
399 ink->height = overall.ascent + overall.descent;
403 logical->width = overall.width;