Lines Matching refs:font
140 .font_start_addr= STI_PTR(sti->font->raw), in sti_putc()
558 struct sti_cooked_font *font; in sti_select_font() local
563 if ((font = sti_select_fbfont(rom, font_name[index]))) in sti_select_font()
564 return font; in sti_select_font()
570 for (font = rom->font_start, i = font_index[index]; in sti_select_font()
571 font && (i > 0); in sti_select_font()
572 font = font->next_font, i--); in sti_select_font()
574 if (font) in sti_select_font()
575 return font; in sti_select_font()
634 struct sti_cooked_font *font; in sti_search_font() local
637 for (font = rom->font_start; font; font = font->next_font, i++) { in sti_search_font()
638 if ((font->raw->width == width) && in sti_search_font()
639 (font->raw->height == height)) in sti_search_font()
771 sti->font = sti_select_font(sti->rom, sti_search_font); in sti_read_rom()
772 sti->font_width = sti->font->raw->width; in sti_read_rom()
773 sti->font_height = sti->font->raw->height; in sti_read_rom()
775 sti->font->raw = sti_bmode_font_raw(sti->font); in sti_read_rom()