Lines Matching defs:pixel
316 /* Linear pixel address */
324 /* Recalculate absolute pixel address from linear address */
1381 int i, j, k, ch, pixel;
1387 pixel = ((i * spx_font.fontheight)+ j) * spx_font.fontwidth;
1390 fontaddr[pixel++] = 0xff;
1392 fontaddr[pixel++] = 0x00;
1395 pixel = (((i + 256) * spx_font.fontheight) + j)
1399 fontaddr[pixel++] = 0xff;
1401 fontaddr[pixel++] = 0x00;
1408 int i, j, k, ch, pixel;
1414 pixel = FONT_STORAGE_START
1417 if ((pixel / SPXg_WIN_LINEAR) != spxg_current_page) {
1418 spxg_switch_page(pixel / SPXg_WIN_LINEAR);
1419 spxg_current_page = (pixel / SPXg_WIN_LINEAR);
1421 SPXg_ADDR(pixel) = ch & (1 << k) ? 0xff : 0x00;
1427 pixel = FONT_STORAGE_START
1430 if ((pixel / SPXg_WIN_LINEAR) != spxg_current_page) {
1431 spxg_switch_page(pixel / SPXg_WIN_LINEAR);
1432 spxg_current_page = (pixel / SPXg_WIN_LINEAR);
1435 SPXg_ADDR(pixel) = 0xff;
1437 SPXg_ADDR(pixel) = 0x00;