Lines Matching refs:fs
39 XFontStruct* /* fs */
53 register XFontStruct *fs;
119 fs = &finfo[i];
121 fs->ext_data = NULL;
122 fs->per_char = NULL;
123 fs->fid = None;
124 fs->direction = reply.drawDirection;
125 fs->min_char_or_byte2 = reply.minCharOrByte2;
126 fs->max_char_or_byte2 = reply.maxCharOrByte2;
127 fs->min_byte1 = reply.minByte1;
128 fs->max_byte1 = reply.maxByte1;
129 fs->default_char = reply.defaultChar;
130 fs->all_chars_exist = reply.allCharsExist;
131 fs->ascent = cvtINT16toInt (reply.fontAscent);
132 fs->descent = cvtINT16toInt (reply.fontDescent);
135 fs->min_bounds = * (XCharStruct *) &reply.minBounds;
136 fs->max_bounds = * (XCharStruct *) &reply.maxBounds;
138 fs->n_properties = reply.nFontProps;
139 fs->properties = NULL;
140 if (fs->n_properties > 0) {
144 fs->properties = Xmallocarray (reply.nFontProps,
147 if (! fs->properties)
149 _XRead32 (dpy, (long *)fs->properties, nbytes);