tag | line | file | source code |
glyph | 171 | drivers/char/consolemap.c | int j, glyph; |
glyph | 187 | drivers/char/consolemap.c | glyph = conv_uni_to_pc(p[j]); |
glyph | 188 | drivers/char/consolemap.c | if (glyph >= 0 && glyph < MAX_GLYPH && q[glyph] < 32) { |
glyph | 190 | drivers/char/consolemap.c | q[glyph] = j; |
glyph | 210 | drivers/char/consolemap.c | unsigned char inverse_translate(int glyph) { |
glyph | 211 | drivers/char/consolemap.c | if ( glyph < 0 || glyph >= MAX_GLYPH ) |
glyph | 214 | drivers/char/consolemap.c | return ((inv_translate && inv_translate[glyph]) |
glyph | 215 | drivers/char/consolemap.c | ? inv_translate[glyph] |
glyph | 216 | drivers/char/consolemap.c | : (unsigned char)(glyph & 0xff)); |
glyph | 12 | drivers/char/consolemap.h | extern unsigned char inverse_translate(int glyph); |