Lines Matching refs:font
139 .font_start_addr= STI_PTR(sti->font->raw), in sti_putc()
557 struct sti_cooked_font *font; in sti_select_font() local
562 if ((font = sti_select_fbfont(rom, font_name[index]))) in sti_select_font()
563 return font; in sti_select_font()
569 for (font = rom->font_start, i = font_index[index]; in sti_select_font()
570 font && (i > 0); in sti_select_font()
571 font = font->next_font, i--); in sti_select_font()
573 if (font) in sti_select_font()
574 return font; in sti_select_font()
633 struct sti_cooked_font *font; in sti_search_font() local
636 for (font = rom->font_start; font; font = font->next_font, i++) { in sti_search_font()
637 if ((font->raw->width == width) && in sti_search_font()
638 (font->raw->height == height)) in sti_search_font()
770 sti->font = sti_select_font(sti->rom, sti_search_font); in sti_read_rom()
771 sti->font_width = sti->font->raw->width; in sti_read_rom()
772 sti->font_height = sti->font->raw->height; in sti_read_rom()
774 sti->font->raw = sti_bmode_font_raw(sti->font); in sti_read_rom()