Lines Matching refs:chr
1447 u8 chr = font8x16[text[s] * 16 + line]; \ in tpg_gen_text()
1450 pos[3] = (chr & (0x01 << 6) ? fg : bg); \ in tpg_gen_text()
1451 pos[2] = (chr & (0x01 << 4) ? fg : bg); \ in tpg_gen_text()
1452 pos[1] = (chr & (0x01 << 2) ? fg : bg); \ in tpg_gen_text()
1453 pos[0] = (chr & (0x01 << 0) ? fg : bg); \ in tpg_gen_text()
1455 pos[0] = (chr & (0x01 << 7) ? fg : bg); \ in tpg_gen_text()
1456 pos[1] = (chr & (0x01 << 5) ? fg : bg); \ in tpg_gen_text()
1457 pos[2] = (chr & (0x01 << 3) ? fg : bg); \ in tpg_gen_text()
1458 pos[3] = (chr & (0x01 << 1) ? fg : bg); \ in tpg_gen_text()
1460 pos[7] = (chr & (0x01 << 7) ? fg : bg); \ in tpg_gen_text()
1461 pos[6] = (chr & (0x01 << 6) ? fg : bg); \ in tpg_gen_text()
1462 pos[5] = (chr & (0x01 << 5) ? fg : bg); \ in tpg_gen_text()
1463 pos[4] = (chr & (0x01 << 4) ? fg : bg); \ in tpg_gen_text()
1464 pos[3] = (chr & (0x01 << 3) ? fg : bg); \ in tpg_gen_text()
1465 pos[2] = (chr & (0x01 << 2) ? fg : bg); \ in tpg_gen_text()
1466 pos[1] = (chr & (0x01 << 1) ? fg : bg); \ in tpg_gen_text()
1467 pos[0] = (chr & (0x01 << 0) ? fg : bg); \ in tpg_gen_text()
1469 pos[0] = (chr & (0x01 << 7) ? fg : bg); \ in tpg_gen_text()
1470 pos[1] = (chr & (0x01 << 6) ? fg : bg); \ in tpg_gen_text()
1471 pos[2] = (chr & (0x01 << 5) ? fg : bg); \ in tpg_gen_text()
1472 pos[3] = (chr & (0x01 << 4) ? fg : bg); \ in tpg_gen_text()
1473 pos[4] = (chr & (0x01 << 3) ? fg : bg); \ in tpg_gen_text()
1474 pos[5] = (chr & (0x01 << 2) ? fg : bg); \ in tpg_gen_text()
1475 pos[6] = (chr & (0x01 << 1) ? fg : bg); \ in tpg_gen_text()
1476 pos[7] = (chr & (0x01 << 0) ? fg : bg); \ in tpg_gen_text()