Lines Matching refs:glyph
203 #define UNI(dir, row, glyph) (FIELD_PREP(UNI_DIR_BITS, (dir)) | \ argument
205 FIELD_PREP(UNI_GLYPH_BITS, (glyph)))
245 int glyph = conv_uni_to_pc(conp, t[ch]); in set_inverse_transl() local
246 if (glyph >= 0 && glyph < MAX_GLYPH && inv[glyph] < 32) { in set_inverse_transl()
248 inv[glyph] = ch; in set_inverse_transl()
279 u16 glyph = row[g]; in set_inverse_trans_unicode() local
280 if (glyph < MAX_GLYPH && inv[glyph] < 32) in set_inverse_trans_unicode()
281 inv[glyph] = UNI(d, r, g); in set_inverse_trans_unicode()
300 u16 inverse_translate(const struct vc_data *conp, u16 glyph, bool use_unicode) in inverse_translate() argument
305 if (glyph >= MAX_GLYPH) in inverse_translate()
310 return glyph; in inverse_translate()
314 return glyph; in inverse_translate()
316 return p->inverse_trans_unicode[glyph]; in inverse_translate()
321 return glyph; in inverse_translate()
323 return p->inverse_translations[m][glyph]; in inverse_translate()
866 u16 **dir, *row, glyph; in conv_uni_to_pc() local
895 glyph = row[UNI_GLYPH(ucs)]; in conv_uni_to_pc()
896 if (glyph >= MAX_GLYPH) in conv_uni_to_pc()
899 return glyph; in conv_uni_to_pc()