Lines Matching defs:cs
80 register XCharStruct *cs;
86 CI_GET_CHAR_INFO_1D (fs, ind, def, cs);
88 CI_GET_CHAR_INFO_2D (fs, r, c, def, cs);
91 if (cs) {
93 *overall = *cs;
95 overall->ascent = max (overall->ascent, cs->ascent);
96 overall->descent = max (overall->descent, cs->descent);
98 overall->width + cs->lbearing);
100 overall->width + cs->rbearing);
101 overall->width += cs->width;
147 register XCharStruct *cs;
153 CI_GET_CHAR_INFO_1D (fs, ind, def, cs);
155 CI_GET_CHAR_INFO_2D (fs, r, c, def, cs);
158 if (cs) width += cs->width;
194 register XCharStruct *cs;
200 CI_GET_CHAR_INFO_1D (fs, ind, def, cs);
202 CI_GET_CHAR_INFO_2D (fs, r, c, def, cs);
205 if (cs) height += (cs->ascent + cs->descent);