Searched refs:cp437table (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/sys/dev/syscons/
H A Dscterm-teken.c394 static const struct unicp437 cp437table[] = { variable in typeref:struct:unicp437
497 max = (sizeof(cp437table) / sizeof(struct unicp437)) - 1;
499 if (*c < cp437table[0].unicode_base ||
500 *c > cp437table[max].unicode_base + cp437table[max].length)
505 if (*c < cp437table[mid].unicode_base) {
507 } else if (*c > cp437table[mid].unicode_base +
508 cp437table[mid].length) {
511 *c -= cp437table[mid].unicode_base;
512 *c += cp437table[mi
[all...]
/freebsd-current/stand/i386/libi386/
H A Dvidconsole.c193 static const struct unicp437 cp437table[] = { variable in typeref:struct:unicp437
287 max = (sizeof(cp437table) / sizeof(struct unicp437)) - 1;
289 if (c < cp437table[0].unicode_base ||
290 c > cp437table[max].unicode_base + cp437table[max].length)
295 if (c < cp437table[mid].unicode_base)
297 else if (c > cp437table[mid].unicode_base +
298 cp437table[mid].length)
301 return (c - cp437table[mid].unicode_base +
302 cp437table[mi
[all...]
/freebsd-current/sys/dev/vt/hw/vga/
H A Dvt_vga.c205 static const struct unicp437 cp437table[] = { variable in typeref:struct:unicp437
302 max = nitems(cp437table) - 1;
304 if (c < cp437table[0].unicode_base ||
305 c > cp437table[max].unicode_base + cp437table[max].length)
310 if (c < cp437table[mid].unicode_base)
312 else if (c > cp437table[mid].unicode_base +
313 cp437table[mid].length)
316 return (c - cp437table[mid].unicode_base +
317 cp437table[mi
[all...]

Completed in 75 milliseconds