Lines Matching refs:glyph
185 #define MAX_GLYPH 512 /* Max possible glyph value */
201 int j, glyph;
215 glyph = conv_uni_to_pc(conp, t[j]);
216 if (glyph >= 0 && glyph < MAX_GLYPH && q[glyph] < 32) {
218 q[glyph] = j;
226 int i, j, k, glyph;
249 glyph = p2[k];
250 if (glyph >= 0 && glyph < MAX_GLYPH
251 && q[glyph] < 32)
252 q[glyph] = (i << 11) + (j << 6) + k;
271 u16 inverse_translate(const struct vc_data *conp, int glyph, int use_unicode)
275 if (glyph < 0 || glyph >= MAX_GLYPH)
280 return glyph;
283 return glyph;
285 return p->inverse_trans_unicode[glyph];
289 return glyph;
291 return p->inverse_translations[m][glyph];