Lines Matching refs:ch
52 dump_char_struct(XCharStruct * ch, char *prefix)
55 prefix, ch->lbearing, ch->rbearing, ch->width);
57 prefix, ch->ascent, ch->descent, (unsigned int) ch->attributes);
301 XCharStruct *ch;
308 ch = isvalid(fs, c);
309 if (!ch) {
310 ch = &fs->max_bounds;
321 dump_char_struct(ch, s);
327 width = ch->rbearing - ch->lbearing;
328 height = ch->ascent + ch->descent;
329 x0 = -ch->lbearing;
330 y0 = ch->descent - 0; /* XXX used to subtract 1 here */
332 dx = ch->width;
336 x = -ch->lbearing;
337 y = ch->ascent;