Searched refs:glyph (Results 1 - 7 of 7) sorted by relevance
/linux-4.4.14/include/linux/ |
H A D | consolemap.h | 19 extern u16 inverse_translate(struct vc_data *conp, int glyph, int use_unicode); 26 #define inverse_translate(conp, glyph, uni) ((uint16_t)glyph)
|
/linux-4.4.14/drivers/tty/vt/ |
H A D | consolemap.c | 172 #define MAX_GLYPH 512 /* Max possible glyph value */ 188 int j, glyph; set_inverse_transl() local 202 glyph = conv_uni_to_pc(conp, t[j]); set_inverse_transl() 203 if (glyph >= 0 && glyph < MAX_GLYPH && q[glyph] < 32) { set_inverse_transl() 205 q[glyph] = j; set_inverse_transl() 213 int i, j, k, glyph; set_inverse_trans_unicode() local 236 glyph = p2[k]; set_inverse_trans_unicode() 237 if (glyph >= 0 && glyph < MAX_GLYPH set_inverse_trans_unicode() 238 && q[glyph] < 32) set_inverse_trans_unicode() 239 q[glyph] = (i << 11) + (j << 6) + k; set_inverse_trans_unicode() 258 u16 inverse_translate(struct vc_data *conp, int glyph, int use_unicode) inverse_translate() argument 262 if (glyph < 0 || glyph >= MAX_GLYPH) inverse_translate() 267 return glyph; inverse_translate() 270 return glyph; inverse_translate() 272 return p->inverse_trans_unicode[glyph]; inverse_translate() 276 return glyph; inverse_translate() 278 return p->inverse_translations[m][glyph]; inverse_translate()
|
H A D | vt.c | 69 * original codes or '?' as a last resort if replacement glyph is undefined 129 * glyph unless the disp_ctrl mode is explicitly enabled. 2316 * only allow a glyph to be displayed if the code is do_con_write() 2344 /* In legacy mode use the glyph we get by a 1:1 mapping. do_con_write()
|
/linux-4.4.14/drivers/accessibility/braille/ |
H A D | braille_console.c | 145 u16 glyph = screen_glyph(vc, vc_refresh() local 147 buf[i] = inverse_translate(vc, glyph, 1); vc_refresh()
|
/linux-4.4.14/scripts/ |
H A D | conmakehash.c | 68 fprintf(stderr, "ERROR: Only 255 unicodes/glyph permitted!\n"); addpair()
|
/linux-4.4.14/include/video/ |
H A D | gbe.h | 70 volatile uint32_t crs_glyph[64];/* crs glyph */
|
/linux-4.4.14/drivers/video/fbdev/intelfb/ |
H A D | intelfbhw.c | 1770 * Check if the glyph data exceeds the immediate mode limit. intelfbhw_do_drawglyph()
|
Completed in 231 milliseconds